Search results

  1. M

    Execute Add-In Button from VBA Outlook 2016

    Outlook 2016 doesn`t support the Commandbar anymore. If the Addin doesn´t support a public method to call that function, you cannot call it.
  2. M

    Working with Explorer.Close event

    It just notifies the Addin that Outlook is going to close.
  3. M

    Can VBA intervene when updating Internet Calendars?

    Sorry, I`ve never used any internet calendars. If the calendar is listed anywhere under send/receive groups, then see the events of the SyncObject, which is accessible via Session.SyncObjects(x). If such a calendar is updated constantly, maybe the ItemChange event of the Folder.Items object is...
  4. M

    Working with Explorer.Close event

    You can try to set RequireShutdownNotification in the registry for the VBA Addin, add that key to the Addin with a dword value of 1.
  5. M

    Hubby and Wife names in email address

    You can change the DisplayName on the contact card, the field below the email address.
  6. M

    Saving items under a folder

    Have you considered using categories instead of folders?
  7. M

    Disable or hide "reply" and "reply to all" and "forward" in email from access vba

    See: How to easily disable Reply To All and Forward in Outlook - Scott Hanselman
  8. M

    Received mail as part of DL, need to auto-CC the same when replying

    Track the NewInspector event. If the To property of the new item is already set and the EntryID is empty, then it´s either a reply or a reply to all. Add your dl to the recipients property of the new item. Additionally, since Outlook 2013 you´ll also want to track the InlineResponse event.
  9. M

    Script to fetch data from mails in restricted collection and sending them to excel

    What´s the error saying and which line raises it?
  10. M

    Open an outlook email by Subject on MS Access linked table with VBA

    You need to use the Set statement as you did on the line above the error causing line.
  11. M

    Macro for attachment saved and combine

    Creating or moving emails is possible as well as adding attachments. I just don´t understand yet what you want to do. Do you want to save an attachment from an email to the file system?
  12. M

    Received mail as part of DL, need to auto-CC the same when replying

    Why don´t you just click the ReplyAll button?
  13. M

    Catching ModuleSwitch events after "open in new window"

    ActiveExplorer always points to the active explorer. However, if a new explorer is opened, it´s a new reference while the one stored in your variable still points to the first object. You need to keep a ref on each opened explorer, which requires to add a class module to your project. This...
  14. M

    Slow VBA macro in Outlook

    uup, sorry for the formatting. i still don´t know how to enter code here ;-)
  15. M

    Slow VBA macro in Outlook

    The code indeed is pretty unefficiently: MyDocs is called multiple times although it returns always the same value, and it loops at least twice, if not three times, through each items attachments. Also, VBA doesn´t use the OR in the If statement efficiently, that is it checks each part even if...
  16. M

    Forwarding attachments in email received

    Since you cannot directly add an attachment from one email to another, you first need to save each attachment as a file, then add the file it to the new email.
Back
Top