Search results

  1. M

    Get metadata from .msg files saved to local drive

    Hi Firstly, is it possible to get metadata information from saved .msg files to local drive, in particular "Title". And then would it possible to edit this using Visual Basic. The intention was to include From and To in the Title field so you could see this in Windows Explorer, as shown below...
  2. M

    Folder names - rich text

    Hi I'm trying to use characters which shows up in color in Outlook desktop (such as ⚡⭐🌌🌐🍀) to discern folder hierarchy more easily. I can't find the setting to make it show up in colour, in desktop application. In the web based version of outlook, it does show up in colour, see below. Outlook...
  3. M

    Search message, then (1) Jump to folder & (2) Select message that you searched for

    I was using this code a while ago, I'm not sure if it was from this forum. It can do: (1) Jump to folder But also would like it to do: (2) Select message that you searched for Reason is that there can be a lot of emails in a folder. Option Explicit Public Sub get_folder_path() Dim...
  4. M

    Move command

    I use the Move command a lot to move emails to other folders. Is there anyway to increase the number of options, using VBA or otherwise. Currently 10 folders are available, could this be increased?
  5. M

    Saving emails using Visual Basic - Selecting folder with msoFileDialogFolderPicker

    Hi, I asked this a few years ago but didn't get a response. Was hoping it's now possible. This macro saves selected emails into a folder chosen by function "BrowseForFolder". It also adds the date as part of the filename. My issue is that the default start folder selected is always the same and...
  6. M

    Extract "Date sent" from emails (saved to folder using drag and drop)

    Hi, is it possible to extract the date sent for emails saved in a desktop folder, using drag and drop. This would be done using VBA in Excel.
  7. M

    Dialog called up multiple times when saving emails from macro

    This macro saves selected emails into a folder chosen by function "BrowseForFolder". If I select "n" emails to save, the dialog comes up "n" times. Is there a way to call it up just once? Option Explicit Public Sub Save_Messages_Select_Ask2() Dim oMail As Outlook.MailItem Dim objItem As...
  8. M

    Selecting folder with msoFileDialogFolderPicker

    This macro saves selected emails into a folder chosen by function "BrowseForFolder". It also adds the date as part of the filename. My issue is that the default start folder selected is always the same and I have to navigate to the folder each time. I want to use "msoFileDialogFolderPicker" to...
  9. M

    Large emails not sent from correct account

    Hi I use Outlook 2007. I have a Hotmail account as the default and then I have another IMAP account as well. When I send a small size email (with or without a file attachment) from the IMAP account, all is good. When I send an email with a large size attachment, it sends from the default Hotmail...
  10. M

    Save selected email message as .msg file (with user to choose folder location)

    Hi The macro below works perfectly to save emails to your hard drive with a date prefix. However, it only saves to "\Documents". Is there some code that I can insert so that I can choose the folder path. Thanks. Option Explicit Public Sub SaveMessageAsMsg() Dim oMail As Outlook.MailItem...
Back
Top