Search results

  1. 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...
  2. 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?
  3. 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...
  4. 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.
  5. 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...
  6. 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...
  7. 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...
  8. 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