Link to home
Start Free TrialLog in
Avatar of NashVegas
NashVegasFlag for United States of America

asked on

Using VBA to update a shared calendar

This article from MSDN talks about how to automate Outlook using VB:
http://support.microsoft.com/kb/220595
But is it possible to use VB to add calendar events on a shared calendar on an Exchange server as opposed to the user's default Outlook calendar? If so, how would one set a reference to a calendar in a location such as "https://email.institution.edu/public/Sub%20Folder/?Cmd=contents"?
Avatar of darbid73
darbid73
Flag of Germany image

does this help you

Dim objApp As Outlook.Application
    Dim objNS As Outlook.NameSpace
    Dim objFolder As Outlook.MAPIFolder
    Dim objDummy As Outlook.MailItem
    Dim objRecip As Outlook.Recipient
    Dim objInvite As Outlook.Recipient
    Dim objAppt As Outlook.AppointmentItem
    Dim strMsg As String
    Dim strName As String
    On Error Resume Next
    
    ' ### name of person whose Calendar you want to use ###
    strName = "name@name.com"
    
    Set objApp = CreateObject("Outlook.Application")
    Set objNS = objApp.GetNamespace("MAPI")
    Set objRecip = objNS.CreateRecipient(strName)
    
 
    Set objFolder = objNS.GetSharedDefaultFolder(objRecip, olFolderCalendar)
        
        If Not objFolder Is Nothing Then
            Set objAppt = objFolder.Items.Add
            If Not objAppt Is Nothing Then
                With objAppt
                    .MeetingStatus = olMeetingRequest
                    .MeetingStatus = olMeeting
                    .Subject = "Donald Duck's Birthday"
                    .Start = "07/03/2009 17:00:00"
                    .Body = "YOU ARE A WINNER"
                    .Duration = 1400
                    .Location = "France Paris"
                    .ReminderMinutesBeforeStart = 60
                    .BusyStatus = olTentative
                    .RequiredAttendees = "invitee@name.com"
                    .Display
                End With
            End If
        End If
        
        
    Set objApp = Nothing
    Set objNS = Nothing
    Set objFolder = Nothing
    Set objDummy = Nothing
    Set objRecip = Nothing
    Set objAppt = Nothing

Open in new window

Avatar of NashVegas

ASKER

Thank you for the prompt response. It looks to me that this code provides a way to send an appointment item to a specific user which is something I will definitely have a use for, but not the solution in this particular case. Unless the URL for the shared calendar can be used in place of "name@name.com". Is there a different library function similar to "CreateRecipient" that could be used to point to the shared calendar rather than an indiviual user's calendar?
I must admit that I am not familiar with a URL shared calendar but the code I gave you will definately allow you to enter appointments on a shared calendar.

Note here...

Set objFolder = objNS.GetSharedDefaultFolder(objRecip, olFolderCalendar)

The key to this is for you to get the right name of the shared folder.
So in this scenario, a specific user would have to create a calendar and share it with the other users who need access. Then "name@name.com" would be the calendar owner's email address and "GetSharedDefaultFolder" would reference the specific calendar they are sharing, correct? I think this might be okay (I'll have to run it by the users). But unless I'm missing something, I don't see where in the code the name of the shared calendar would be set. I would expect "GetSharedDefaultFolder" to mean "the default calendar for the specified user". So how would I define which of the user's calendars is the calendar to which I want to add an appointment?
I have only worked with shared calendars, where USER_A has given USER_B rights to their calendar.  USER_B then has multiple calendars which they can see - It appears in the "Other Calendars" section.  I have not seen your URL calendar but I imagine that if a user can manually add an item to this URL calendar then it must be a calendar folder on this users outlook - it might even appear as an "Other Calendar".

But your key to getting a users calendar is by the Recipient.

Your code will fail if the USER_B tries to get USER_A's calendar and USER_A has not allowed it.
I am certain that in our case, USER_A will not want these calendar events cluttering their default calendar. If USER_A created a second calendar called "SharedCalendar" and gave other users permissions to view that calendar, then that is the only way this solution might be acceptable.
ASKER CERTIFIED SOLUTION
Avatar of darbid73
darbid73
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
https://www.experts-exchange.com/questions/23972317/Creating-appointments-in-Public-Calendar-from-Access.html?sfQueryTermInfo=1+appoint+calendar+set

I found another thread that answered my question. I had searched before but somehow could not find this until now. I'll give you credit for helping me get on the right path. Thanks,