Pull Data From Non-Default Calendar

E

eckert1961

Hello,

I am running Outlook 2003 and I have a macro that pulls data from the
default calendar. I created a new calendar named "Instructor Schedule" which
is a subfolder under Calendar. I would like to change the code so that the
data is pulled from the new calendar. Currently I am using the following code.

Set colCal = objNS.GetDefaultFolder(olFolderCalendar).Items

What change would I need to implement to get my desired results? Thanks.

Regards,
Chris
 
K

Ken Slovak - [MVP - Outlook]

Set colCal =
objNS.GetDefaultFolder(olFolderCalendar).Folders.Item("Instructor
Schedule").Items
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top