Results 1 to 2 of 2

Thread: VB6 + OUTLOOK .PickFolder show shared Calendars

  1. #1

    Thread Starter
    Member
    Join Date
    Feb 2016
    Location
    France
    Posts
    32

    VB6 + OUTLOOK .PickFolder show shared Calendars

    Hello,

    I don't understand why I can't list the Shared Calendar with this code. If a friend shares his calendar, I don't see him.

    Code:
            Dim lO_OutObj As Outlook.Application
            Set lO_OutObj = CreateObject("Outlook.Application")
            
            Dim lO_fdrCalendrier As Outlook.MAPIFolder
            Set lO_fdrCalendrier = lO_OutObj.GetNamespace("MAPI").PickFolder
            
            If Not (lO_fdrCalendrier Is Nothing) Then
                MsgBox "ok"
            Else
    
            End If
            
            Set lO_OutObj = Nothing
            Set lO_fdrCalendrier = Nothing
    Is that impossible? But if i try with Outlook exchange 2013, It's ok. With Outlook 365 nop :/

  2. #2
    PowerPoster jdc2000's Avatar
    Join Date
    Oct 2001
    Location
    Idaho Falls, Idaho USA
    Posts
    2,398

    Re: VB6 + OUTLOOK .PickFolder show shared Calendars

    Are you referring to Office 365 Outlook in a web browser? If yes, then the code you have shown won't work there.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width