VB Code:
  1. Set ocalItems = myNamespace.GetSharedDefaultFolder(myRecipient, Outlook.OlDefaultFolders.olFolderCalendar).Items
  2.        
  3.         Set Appointment = ocalItems.GetFirst
  4.        
  5.             Do While Not (Appointment Is Nothing)
  6.                 bla bla
  7.  
  8.             Set Appointment = ocalItems.GetNext
  9.             Loop

What could be the cause that not all of the appointments are loaded?
When I loop the appointments, some doesn't show up.....