Hi,
Thanks for posting in the community.
First of all, I would like to confirm my understanding of your issue.
From your description, I understand that you wants to get the user's
calendar.
Have I fully understood you? If there is anything I misunderstood, please
feel free to let me know.
I think you may try to use the Outlook Object Modal to restrieve the
calendar.
<code snippet>
Dim o As Outlook.Application
o = New Outlook.Application
Dim calenFolder As Outlook.MAPIFolder
calenFolder =
o.GetNamespace("MAPI").GetDefaultFolder(Outlook.OlDefaultFolders.olFolderCal
endar)
Dim cItem As Outlook.AppointmentItem
For Each cItem In calenFolder.Items
Console.WriteLine(cItem.Subject)
Next
<code snippet>
Best regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! -
www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.