Recent content by Zditsky

  1. Z

    Outlook account subfolders - Outlook VB coding

    How do I tell? They're listed under the default account as it's displayed in Outlook 2013. Z
  2. Z

    Outlook account subfolders - Outlook VB coding

    Gave up trying to be elegant and went with the following code format - it worked Set mySubFolder(1) = GetFolderPath("\\email account\inbox\subfolder1name") Set mySubFolder(2) = GetFolderPath("\\email account\inbox\subfolder2name") Z
  3. Z

    Outlook account subfolders - Outlook VB coding

    Set mySubFolder(1) = GetFolderPath("\\prof.smith.pbsc@gmail.com\inbox\PHY2048") '.items Set mySubFolder(2) = GetFolderPath("\\prof.smith.pbsc@gmail.com\inbox\PHY2049") '.items
  4. Z

    Outlook account subfolders - Outlook VB coding

    Reset the code as follows: Set myOlApp = CreateObject("Outlook.Application") Set myNameSpace = myOlApp.GetNamespace("MAPI") Dim items Set items = GetFolderPath("\\myEmail@gmail.com\inbox").items '== Set myFolder = myNameSpace.GetDefaultFolder(olFolderInbox) ' Inbox folder...
  5. Z

    Outlook account subfolders - Outlook VB coding

    ============= I applied the suggested addition so that the code looks as follows Set myOlApp = CreateObject("Outlook.Application") Set myNameSpace = myOlApp.GetNamespace("MAPI") Dim items Set items = GetFolderPath("\\myEmail@gmail.com\inbox").items '== Set myFolder =...
  6. Z

    Outlook account subfolders - Outlook VB coding

    Prior to Outlook 2013, I was able to access emails that were diverted to a sub folder of the InBox. Code was Set myOlApp = CreateObject("Outlook.Application") Set myNameSpace = myOlApp.GetNamespace("MAPI") Set myFolder = myNameSpace.GetDefaultFolder(olFolderInbox) ' Inbox...
Back
Top