Search results

  1. N

    Is there any easy way to quickly search for the name of a folder in Outlook's inbox folder structure

    Here is a quick program example from the Mastering VBA for Office 2013 Manual that runs through the folder structure and displays the folder names: Sub List_All_NameSpace_Folders() Dim my NS as NameSpace Dim myFolder as MAPIFolder Dim mySubfolder as MAPIFolder Dim strFolderList As String...
  2. N

    Adding Appointment Item in Outlook to Shared Calendar Folder

    It's the Microsoft Outlook x Object Library that causes a problem. I add it, but when one of the users opens the Access database and does not have that version of Outlook, it flags the reference as missing or broken, then it doesn't work for anyone after that. I'm not sure what the value would...
  3. N

    Adding Appointment Item in Outlook to Shared Calendar Folder

    Now having a problem with missing reference MSOUTL.OLB. I know this has to do with a user that must have a different version of Outlook. I've tried late binding, but when I remove the reference and try the late binding, I can't use the code Set newCalFolder =...
  4. N

    Adding Appointment Item in Outlook to Shared Calendar Folder

    Michael - thank you SOOOOO much. Worked like a charm.
  5. N

    Adding Appointment Item in Outlook to Shared Calendar Folder

    Hi, I trying to create a new calendar appointment in Outlook using data I have from an Access database. I can get the data into Outlook fine, but I need it to go to a one of many shared calendar files that are not a part of the folder structure of the Outlook file I am logged into. The...
Back
Top