Search results

  1. R

    Microsoft Outlook Macro - Selecting a different mailbox

    You are probably looking for something like this : Filefolder = "Some Folder" Set objInbox = objNameSpace.GetDefaultFolder(olFolderInbox) Set objMailbox = objInbox.Parent 'This object is the whole mailbox Set objFileFolder = objMailbox.Folders(Filefolder) The trick is to use the parent and...
Back
Top Bottom