Search results

  1. B

    Advanced Search in MS Outlook by VBA and SQL

    Here is a code I was able to modify to meet my expection (got from www.slipstick.com). It loops thru entire Outlook and find (in different PST) emails received / sent within today. So far so good. Now, it also searches for and finds Outlook items such new contacts in "Recipient Cache", "Tasks"...
  2. B

    Search by date macro

    I was able to locate this code at www.slipstick.com URL and I need slightly to amend it: what I need that the macro search for emails from one single specific email account and on specific date, such as for example yesterday, or 2 days ago or 1 week ago. Can you please give me a hand and give me...
  3. B

    InputBox for variable folder

    Dear Diana, Thanks, that was indeed helpful!
  4. B

    InputBox for variable folder

    Sub TestGetFolder() Dim Folder As Outlook.Folder Set Folder = GetFolder("\\mymail@domain.com\Inbox\Inbox\Oracle") If Not (Folder Is Nothing) Then Folder.Display End If End Sub I forgot to add the code.
  5. B

    InputBox for variable folder

    Dear Diana, Thanks for the provided code, however, I think I misinterpreted on the requirement. See the included code and attached screenshot I took. When the code shoots off, MS Outlook activates Oracle subfolder, which is located under Inbox in my account. What I wish, instead of changing the...
  6. B

    InputBox for variable folder

    Yes, Diana, that is exactly what I need! How can I do that?
  7. B

    InputBox for variable folder

    I was able to locate a nice piece of code, can anyone help to modify it so that Set Folder = GetFolder("\\mymail@domain.com\Inbox\Training") I could place variable folder? For instance, I tried Set Folder = GetFolder.InputBox() but this function does not work in case! Please advise what can be...
  8. B

    Open a folder / subfolder of a PST in single click

    Meaning there is nothing can be done about creating custom command bar?
  9. B

    Search Folder for search messages in more than one account and / or multiple PST folders

    Dear Diana, The suggested option is a nice, but I need fo persistent. What are other options for making persistent Search Folder in multiple PST folders?
  10. B

    Open a folder / subfolder of a PST in single click

    Hello Michael, I have attached the file (MS Outlook - How to Move Mail Items to a Folder via One Single Click.pdf), this is one is very fancy to use to move email to pre-defined folders. I was wondering if anyone knows of a code that is executed in the similar way and created a panel with...
  11. B

    Search Folder for search messages in more than one account and / or multiple PST folders

    I need to create a Search Folder that would be able to search messages in more than one account and / or multiple PST folders. I have attached two screenshot that show that I can user the Search Folder in the 1 account and the same query I need to prepare another Search Folder with another PST...
  12. B

    Open a folder / subfolder of a PST in single click

    Hello all, I have migrated a lot of folders from my account to an PST archive, there are over 100 folders that were moved. I need to access them constantly, so, I jump between inbox of my account to the PST archive, however, it is a bit annoying as I need to expand / collapse the folders of PST...
Back
Top