HELP with syncing Calender application.

I have Windows Live mail mail organizer programme on my PC and want to sync with my blackberry calender, I have desktop software 5.0.0.509 and it only gives me the option of syncing with Microsoft Outlook.  Does anyone have any advice on how to add Windows Calender..? Or with what calender programs works best to sync with the Blackberry..
Thanks.

JBPbcn wrote:
Thanks for your advice..  How strange as I just downloaded it from the Blackberry website yesterday.. I have now gone again to the Blackberry website to download the lastest version of 6.0 Blackberry desktop software and it started downloading the same file as yesterday.. So I don't understand..  Can you give me a direct link to where I can download the latest software.
Are you 100% positive you are downloading the Desktop Software and not the Device Software? What is the exact filename of what you are downloading? All Desktop Software is available here:
http://us.blackberry.com/apps-software/desktop/
JBPbcn wrote:
Once having this issue solved, I am still a little confused as to whether I can sync my contacts from my Windows Live email PC program.  It says it connects with Microsoft outlook, but with Windows 7 and wanting to access hotmail, the only email program that is compatible these days is WindowsLive mail program..  do you have any ideas or solutions of what program I could use that would be compatible with blackberry and my hotmail, my calendar and contacts?
Only those Organizer apps listed in the prior linked KB are compatible. To synchronize with your BB, you must use one of those.
Good luck!
Occam's Razor nearly always applies when troubleshooting technology issues!
If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
Join our BBM Channels
BSCF General Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • Help with Syncing Calender on my iPhone to Outlook 2007

    Hi Forum members,
    I have just updated my iPhone to iOS5 and am enjoying the new iCloud features. I have setup my calender so that any updates that occur in my Outlook 2007 Diary (that I use for work) get updated wirelessly on my iPhone everytime the iCloud syncs itself.
    However I have no way of reversing the process so that every new entry I create on my iPhone gets synced to my Outlook 2007 calender on my PC.
    Im assuming its just a simple setting to allow 2 way communication between the programs...?
    Any advice?
    Thanks

    No. 16GB of storage is still 16GB of storage. The space taken up will be the same on both devices.

  • I need help with a VB Application

    I need help with building an application and I am on a tight deadline.  Below I have included the specifics for what I need the application to do as well as the code that I have completed so far.  I am having trouble getting the data input into
    the text fields to save to a .txt file.  Also, I need validation to ensure that the values entered into the text fields coincide with the field type.  I am new to VB so please be gentle.  Any help would be appreciated.  Thanx
    •I need to use the OpenFileDialog and SaveFileDialog in my application.
    •Also, I need to use a structure.
    1. The application needs to prompt the user to enter the file name on Form_Load.
    2. Also, the app needs to use the AppendText method to write the Employee Data to the text file. My project should allow me to write multiple Employee Data to the same text file.  The data should be written to the text file in the following format (comma
    delimited)
    FirstName, MiddleName, LastName, EmployeeNumber, Department, Telephone, Extension, Email
    3. The Department dropdown menu DropDownStyle property should be set so that the user cannot enter inputs that are not in the menu.
    Public Class Form1
    Dim filename As String
    Dim oFile As System.IO.File
    Dim oWrite As System.IO.StreamWriter
    Dim openFileDialog1 As New OpenFileDialog()
    Dim fileLocation As String
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    openFileDialog1.InitialDirectory = "c:\"
    openFileDialog1.Filter = "Text files (*.txt)|*.txt|All files (*.*)|*.*"
    openFileDialog1.FilterIndex = 1
    openFileDialog1.RestoreDirectory = True
    If openFileDialog1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
    fileLocation = openFileDialog1.FileName
    End If
    'filename = InputBox("Enter output file name")
    'oWrite = oFile.CreateText(filename)
    cobDepartment.Items.Add("Accounting")
    cobDepartment.Items.Add("Administration")
    cobDepartment.Items.Add("Marketing")
    cobDepartment.Items.Add("MIS")
    cobDepartment.Items.Add("Sales")
    End Sub
    Private Sub btnSave_Click(ByValsender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click
    'oWrite.WriteLine("Write e file")
    oWrite.WriteLine("{0,10}{1,10}{2,10}{3,10}{4,10}{5,10}{6,10}{7,10}", txtFirstname.Text, txtMiddlename.Text, txtLastname.Text, txtEmployee.Text, cobDepartment.SelectedText, txtTelephone.Text, txtExtension.Text, txtEmail.Text)
    oWrite.WriteLine()
    End Sub
    Private Sub btnExit_Click(ByValsender As System.Object, ByVal e As System.EventArgs) Handles btnExit.Click
    oWrite.Close()
    End
    End Sub
    Private Sub btnClear_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnClear.Click
    txtFirstname.Text = ""
    txtMiddlename.Text = ""
    txtLastname.Text = ""
    txtEmployee.Text = ""
    txtTelephone.Text = ""
    txtExtension.Text = ""
    txtEmail.Text = ""
    cobDepartment.SelectedText = ""
    End Sub
    End Class

    Hi Mikey81,
    Your issue is about VB programming, so Visual Basic forum is a better forum for your case. I moved this thread there,
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can Anyone help with syncing my contacts are getting duplicated and there is a file from my computer and they are not the same it is driving me carazy can anyone help?

    Can Anyone help with syncing my contacts are getting duplicated and there is a file from my computer and they are not the same it is driving me carazy can anyone help?

    Are you in DSL? Do you know if your modem is bridged?
    "Sometimes your knight in shining armor is just a retard in tin foil.."-ARCHANGEL_06

  • Need help with a small application

    Hi all, I please need help with a small application that I need to do for a homework assignment.
    Here is what I need to do:
    "Write an application that creates a frame with one button.
    Every time the button is clicked, the button must be changed
    to a random color."
    I already coded a part of the application, but I don't know what to do further.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class ColourButton extends JFrame {
         JButton button = new JButton("Change Colour");
         public ColourButton() {
              super ("Colour Button");
              setSize(250, 150);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JPanel panel = new JPanel();
              panel.add(button);
              add(panel);
              setVisible(true);
         public static void main(String[] args) {
              ColourButton cb = new ColourButton();
    }The thing is I'm not sure what Event Listener I have to implement and use as well as how to get the button to change to a random color everytime the button is clicked.
    Can anyone please help me with this.
    Thanks.

    The listener:
    Read this: [http://java.sun.com/docs/books/tutorial/uiswing/components/button.html]
    The random color:
    [Google this|http://www.google.com/search?q=color+random+java]

  • I need help with the Web Application Certificate

    Greets,
    The title says it all really. I need help with the Web Application Certificate.
    I've followed the instructions from here:
    https://www.novell.com/documentation....html#b13qz9rn
    I can get as far as item 3.c
    3. Getting Your Certificate Officially Signed
    C. Select the self-signed certificate, then click File > Certification Request > Import CA Reply.
    I can get the certificate in to the Filr appliance but from there I'm stuck.
    Any help much appreciated.

    Originally Posted by bentinker
    Greets,
    The title says it all really. I need help with the Web Application Certificate.
    I've followed the instructions from here:
    https://www.novell.com/documentation....html#b13qz9rn
    I can get as far as item 3.c
    ok when you have you self signed certificate and you requested an official certificate with the corresponding CSR then you just need to go back to the digital certificates console. To import the official certificate, select the self signed certificate, then click File > Certification Request > Import CA Reply. Then a new windows pops out to select the certificate from your trusted authority from your local hard disk. Find the file (.cer worked for me) and click ok. As soon as you do this in the digital certificates console the self signed certificate will change the information that now it is officially signed. Look at the second column and you should see the name of your trusted authority under "issue from"
    I personally had a lot of issues across all platforms. Especially Firefox and Chrome for android. Needed to pack all the root cert, intermediate cert and signed cert into one file and import as CA reply. Not even sure if this is correct now. But at least it works.

  • I've just came on board from Andriod and need massive help with the Contacts application any one out there willing to help the 'noob'?

    I had the folks at the store port over all of my contacts from my old
    ratty Andriod phone to my new shiny iPhone.
    however all 200+ of my contacts sort of "shook" out,
    meaning say John Smith, on my old phone,
    had in my contacts the following:
    John Smith
    123 Main St. Anytown, Anystate USA
    555-826-4879 home
    555-799-4247 cell
    [email protected]
    johnsmith@facebook
    all nice and neat on my andriod but when it ported over
    all that information was just scattered all over my contacts sort of like:
    john smith, smith john
    john smith 123 main st. etc.
    johhn smith home 555 etc.
    john smith cell 555 etc.
    john smith johnsmith@ etc.
    etc.
    so for all those 200+ contacts in my phone, I've got a zillion of them now...
    so I'd like to get this all back in order before I and Siri explode.
    I know nothing, and I know even less about outlook and the sort.
    But I do know I am in Dire need of help with this... I figured that eveything else
    involving iphones and apple in general was supposed to be cake but it seems
    like this is the only thing that isn't cake at all... unless, I'm just a right idiot. (which is possible, hence spelling and grammatical issues).

    I believe I've tried to sync it with google, but it didn't seem to take
    muchless take my calender. it seems to favor my facebook calender
    more over my google calender, but Siri seems to be helping me re-write
    it...but that's not the game here, it's the contacts. I've tried to export
    the cvp (??) list and import it into my iTunes account. However, It only
    doubled my issue because it didn't over write my existing contacts.

  • Help with syncing my iCloud calendars

    I have never had a problem with syncing my calendars on iCloud with my laptop, desktop, iPhone and iPad. Recently I have had trouble with things I was putting on my iPhone were not syncing to my iPad. I read through a lot of the tips on here and have tried almost everything. I have removed the calendars and then set up my iCloud account again. I have refreshed numerous times. Nothing seems to work.
    Last night I took all of the iCloud accounts off all devices. I mades sure that when I accessed iCloud via the internet that all my calendars were correct. They were.
    This morning I added the iCloud acccount back to my iPhone and my iPad. All off the calendars from iCloud synced to these devices minus my personal calendar that is on iCloud. It is just one of the names that I have given my color coded calendar. Nothing is different with this calendar than with the other five color coded calendars that I have.
    Does anyone have an idea why this one will not sync? Or suggestions on what I might do or try.
    Thank you!
    Paul

    I have the same problem, I tried the solution of Dr Cox but that didn't work as he said go to system preference then mail, contacts etc. but I don't have that.  Can someone help?
    Elaine

  • Help with syncing iPhone to new computer

    I have a PC and it crashed a month ago. I have an external hardrive that I saved my data too, but it hadn't been updated since I got the iPhone. If I plug my iPhone into the new PC and sync it will I lose all the date or will it all transfer from the iPhone to the PC? I have a bunch of new songs I've bought on iTunes thru the iPhone and a bunch of apps, I'm really nervous about losing all of it.
    Thanks.

    In regards to iTunes content, an iPhone can be synced or manually managed with an iTunes library on a single computer only.
    Photos can be transferred to an iPhone from a single computer only also. If there are any photos on your iPhone that were transferred from your old computer, were these photos included with your computer's backup? If so, you need to transfer these photos from your computer's backup to your new computer.
    Did you transfer your iTunes folder from your old computer to your computer's backup?
    If so, you need to transfer the iTunes folder to the same location on your new computer. You also need to authorize your new computer with your iTunes account with iTunes if you haven't already done so.
    iTunes includes an option to transfer iTunes content that was purchased/downloaded from the iTunes store from an iPod or iPhone, but this is for iTunes content that was purchased/downloaded from the iTunes store only.
    If you included the iTunes folder with your computer's backup, after restoring the iTunes folder from your backup to your new computer - with iTunes quit before doing so, after doing so with your iPhone connected to iTunes and without syncing, at the iTunes menu bar go to File and select Transfer Purchases From - the name of your iPhone.
    If all 3rd party apps do not transfer to your iTunes library, you can re-download a 3rd party app with iTunes on your computer and you won't be charged again for a purchased app as long as you use the same iTunes account to re-download the app that was used to purchase the app originally.
    Do you plan on syncing contacts and/or calendar events with a supported application on your new computer? The iPhone supports syncing contacts and calendar events with Outlook 2003 or 2007, and with Windows Contacts for syncing contacts only.

  • Need a little help with syncing my iPod.

    I got a new macbook pro for cristmas and a few cds. After i tried to sync my ipod to itunes i put a symbol next to each song that i got from other cds saying that they were downloading but they werent. Also the cds i downloaded to my ipod for the first time didnt appear at all. Need help.

    /Re: Need a little Help with my new xfi titanium? ?
    ZDragon wrote:
    I'm unsure about the first question. Do you even have a 7. system and receiver? If you just have 5., you should be able to remap the audio in the THX console.
    I do have a sony 7. reciever str de-995 its an older one but its only for my cpu. At first i didnt even have THX installed because it didnt come with the driver package for some reason until i downloaded the daniel_k support drivers and installed it. But it doesnt help in anyway.
    I have checked every where regarding the first question and alot of people are having problems getting sound out of there rear channels and the sound being re-mapped to the surround right and the surround left as if there rear left and rear right.
    I read somewhere that the daniel_k support drivers would fix this but it didnt for me and many others.
    For the second question i assumed it would be becasue of the spidf pass through and that my onboard sound card was inferior to the xfi titaniums. But i wasnt sure and i was hopeing that someone would have a solution for that problem because i miss controlling the volume with my keyboard.

  • Can someone help with this simple application

    I am taking my first java class and there are limited resourses for the class as far as getting help with coding.
    Any hoo if any one can point me in the correct direction from the following information listed below I would be greatfull. I am trying to use the set and get methods on the instance veriables and then I am goign to post the results once I get them workign to a JOption pane window.
    examples are most welcome thanks
    // Invoice.java
    // Homework assignment 3.13
    // Student Arthur Clark
    public class Invoice // public class
    String partNumber;// instance veriable quantity
    String partDescription;// instance verialbe partDescription
    //constructors
    public void setpartNumber( String number, String description )
              partNumber = number; //initalize quantity
              partDescription = description; // initalize partDescription
         }// end constructors
    //method getpartNumber
    public String getpartNumber()
              return partNumber;
         }//end method getpartNumber
    public String getpartDescription()
              return partDescription;
         }// end method getpartDescription
    public void displayMessage()
         //this is the statement that calls getpartNumber
         System.out.printf(" part number # \n%s!\n the description", getpartNumber(), getpartDescription() );
    } // method displaMessage
    }// end method main
    // Fig. 3.14 InvoiceTest.java
    // Careate and manipulate an account object
    import java.util.Scanner;
    import javax.swing.JOptionPane;//import JOptionPane
    public class InvoiceTest{
         // main method begins the exciution of the program
         public static void main ( String args [] )
              // create Scanner to obtain input from mommand window
              Scanner input = new Scanner ( System.in );
              // create a Invoice object and assig it to mymethod
              Invoice myMethod = new Invoice();
              Invoice myMethod2 = new Invoice();
              // display inital value of partName, partDescriptoin
              System.out.printf( "inital partname is %s\n\n", myMethod.getpartNumber() );
              // prompt for and read part name, partDescription
              System.out.println( "please enter the Part Number:" );
              String theNumber = input.nextLine(); // read a line of text
              myMethod.setpartNumber( theNumber ); // set the part name with in the parens
              System.out.println();// outputs blank line
              myMethod.displayMessage();
              System.out.println( "please enter the Part Description" );
              String theDescription = input.nextLine(); // read a line of text
              myMethod2.setpartDescription( theDescription );// set the part description
              System.out.println();// outputs blank line
              myMethod2.displayMessage();
         }// end main mehtod
    }// end class

    //constructors
    public void setpartNumber( String number, String description )
              partNumber = number; //initalize quantity
              partDescription = description; // initalize partDescription
         }// end constructorsThe above code is not a constructor. You do not include a return type, void or anything else. Also, the constructor should be called the same as your class.
    public Invoice( String number, String description )
              partNumber = number;
              partDescription = description;
         } Another thing, comments should only be used when it isn't bleedingly obvious what your code is doing.
    P.S. is your middle initial C?

  • Help with syncing photos please

    Ok, so iam having problems with syncing a folder from my computer to my iphone. Once done syncing the photos it makes 2 albums on my iphone, one with the name of my folder and one with the name "Photo Library" they both have the same photos on them, how do I get the unwanted one off?

    This is normal and cannot be changed.
    All photos transferred to the iPhone are stored and will be available in the iPhone's Photo Library.
    If you transfer 3 folder names or albums that contain photos say 10 photos each, it will be as follows:
    Photo Library (30)
    Photo Album 1 (10)
    Photo Album 2 (10)
    Photo Album 3 (10)
    With the Photo Album names to be whatever you name the folders which contain the photos transferred to your iPhone.
    This way you can view all photos available in all albums by selecting the iPhone's Photo Library or view the photos available in a particular folder or album only by selecting the album.
    Photos in the folders or albums are not duplicated. They include a pointer to the original photo contained in the iPhone's Photo Library.

  • Help with syncing and turning on iCloud

    I'm having issues with syncing, once the process has finished an error -34 comes up and says it was interrupted and would I like to restore backup. Yet the iPad tells me back up restore was completed. What is wrong? Next is iCloud. I have the original iPad and I'm being prompted to turn on iCloud. How do I do this when the icon on my iPad isn't allowing me to even click on it.

    I don't know about your Syncing, but here's a link on how to set up iCloud:
    http://www.apple.com/icloud/setup/
    http://support.apple.com/kb/HT4436

  • Help with Sync Calendar with Outlook all appointments do not sync..

    I am not a super tech but I do have some pretty good skills for a girl, if i do say so myself.... however I am So frustrated.. I need help.
    This is my very first public post.. So I hope I give all the info that will help, but if I missed something, please let me know.
    Here is some background info:
    I have a BB Bold
    I do NOT use it on an enterprise (network) 
    I sync my bb with my dell 
    Windows Vista (UGH!!!)  
    Microsoft outlook - Version 6.0.6001 Service Pack 1 Build 6001
    My calendar and my contacts are the most important reason I have a bb
    My contacts are FINE
    My calendar is a MESS
    I have 2 separate email addresses working though my bb.. For the purposes of his post I will refer to them as  
    [email protected]  and  
    [email protected]  
    When I make appointments in my work calendar, I do one of the 2 things to get all my appointments on the BB
    Schedule my gmail address as an attendee to the appointment or
    Forward the appointment to my gmail address from my work email
    When I make appointments directly from my BB I do it by selecting Menu>New = my gmail account defaults as the "send using"
    BB Info:
    When I am in the calendar and I select >Menu.Options> Calendars> I have 3 options
    [email protected] which has (518 entries)
    Device Default  which has (157 entries)
    [email protected] which has (429 entries)
    When I go to Menu>Options>Advanced Options>Default Services>(CICAL) is [email protected]  it shows that I have the options to select my Gmail OR my .mac address
    Here is the problem - this did not used to happen, and I quite honestly didnt realize that my backup was messed up so i have NO idea how long this is going on.
    When I sync with Outlook
    There are only 518 appointments that are synced
    I cannot get the other 157 (device default) + 429 (mac) to sync with my outlook
    Can anyone help me get them all on my gmail calendar? or into my outlook so that I can then sync back with the BB 
    I do not sync my bb with my mac
    Here is what I have tired:
    Screaming at the computer
    Screaming in spanish at the blackberry
    ignoring them both
    I have restrained myself from throwing both of them against the wall.
    but seriously
    I have set the BB desktop manager to do a one way sync > bb to outlook = NOTHING Only the gmail syncs
    I have changed the (CICAL)  to my mac address and performed a sync = NOTHING - only the gmail syncs
    I am at a loss and would appreciate any help.
    Solved!
    Go to Solution.

    Hi,
    We shall then forget about the MAC records.
    Outlook contains the 158 records from the Gmail associated calendar.
    The default calendar records need to be cleared and restored to the Gmail associated Calendar.
    The resulting Blackberry gmail associated calendar will then be synchronized with Outlook to add the former default records
    resulting in synchronized calendars on both Outlook and the Blackberry.
    Read this over, I suggest more than once. Method three is what we are going to do.
    Let me know tomorrow what questions you have with the procedure so we can make sure we are successful.
    KB16063 Unexpected results occur when synchronizing with a BlackBerry smartphone that has multiple CICAL service records.
    Let me know how it goes!
    Thanks,
    Bifocals
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • Need help with syncing, PLEASE

    Need to sync 2 iphones (one a 4g other a 3g) each one to a separate computer (wife's desktop with win 7, I have a laptop win vista) and I have only one itune account. I would like to be able to sync all apps to each phone, BUT I only want to sync her contact/address book to hers and only my contacts /address book to my phone.
    Is it POSSIBLE?
    Any suggestion and help will be appreciated...
    Don

    Since all 3rd party apps are available in the iTunes library on your computer and you are sharing the same iTunes account, she can sync iTunes content only with iTunes on your computer - music, movies, tv shows, and 3rd party apps without syncing contacts with a supported address book application on your computer. She won't have sync contacts selected under the Info tab for her iPhone sync preferences with iTunes on your computer. She can sync contacts only with a supported address book application on her computer. She won't have Sync Music, Sync Movies, Sync TV Shows, and Sync Apps under these tabs for her iPhone sync preferences with iTunes on her computer.

Maybe you are looking for