Is there a way I can make a button on an access database that automatically searches Outlook? My idea is to have a button besides the email address which can be clicked and it will open Outlook, or jump to Outlook if its open, and search all items for the customer's email address?
feedback
|
|
Below is a VBA sub that takes a search string and searches in either the existing instance of Outlook or creates a new instance to search. Tested in Office 2010. It's worth putting in a real error handler if this is going to be used by others. You'll need to make a reference to "Microsoft Outlook 14.0 Object Library" or whatever version you have. You can do this in the VBA window via Tools->References. If you're feeling fancy you can display the search results in Access itself with the help of the AdvancedSearch method.
| |||||
feedback
|