I got this code:
VB Code:
  1. Dim myOlApp As Outlook.Application
  2. Set myOlApp = New Outlook.Application
  3. Dim myNamespace As Outlook.NameSpace
  4. Dim myRecipient As Outlook.Recipient
  5. Dim Appointment As Outlook.AppointmentItem
  6. Dim ocalItems As Object
  7. 'Dim ocalItems As Outlook.Items
  8.  
  9. Set myNamespace = myOlApp.GetNamespace("MAPI")
  10.  
  11.     Set myRecipient = myNamespace.CreateRecipient("someone")
  12.    
  13.     myRecipient.Resolve
  14.        
  15.     If myRecipient.Resolved = True Then
  16.            
  17.         Dim MyMapI As Outlook.MAPIFolder
  18.         Set MyMapI = myNamespace.GetSharedDefaultFolder(myRecipient, olFolderCalendar)
  19.    
  20.         MyMapI.Display
  21.    
  22.     End If
  23.  
  24. Set Appointment = Nothing
  25. Set ocalItems = Nothing
  26. Set myNamespace = Nothing
  27. Set myRecipient = Nothing
  28. Set myOlApp = Nothing

Can someone help me with the following:
I want to see the calendar of someone but not from this week or this day but next week or last week.
Something to do with the selected date???

'course in CODE.