I want to open a specific folder in Outlook 2000 from VB 6. I have used the following code to successfully open the Inbox folder:
Set myOlApp = CreateObject("Outlook.Application"
Set myNameSpace = myOlApp.GetNameSpace("MAPI"
Set myFolder = myNameSpace.GetDefaultFolder(olFolderInbox)
But, I can't find a way to open another folder. Does anyone have some ideas?
Thanks for the help. -- Ham Rutledge
Set myOlApp = CreateObject("Outlook.Application"
Set myNameSpace = myOlApp.GetNameSpace("MAPI"
Set myFolder = myNameSpace.GetDefaultFolder(olFolderInbox)
But, I can't find a way to open another folder. Does anyone have some ideas?
Thanks for the help. -- Ham Rutledge