In a VB application I am building, I need to launch Outlook. Obviously, on every computer the path to Outlook will not be the same. Thus, I need to know how to find the path of Outlook on the user's computer before I Shell("path"). How would I do this?
feedback
|
|
Usually Outlook is installed into the environment path, so you could just use:
| |||
|
feedback
|
|
If you simply want to send mail via outlook (or any default email client), you can always just shell Otherwise... You can check if Microsoft Office is installed, and grab the path via the registry. You can then navigate to the Outlook directory e.g.
See How to programatically determine if Microsoft Office is installed | ||||
|
feedback
|
|
First, the user might have multiple versions of Outlook installed. You could try this registry path:
...Works for me! If you're going to send an email, etc, by the way, you could run the commandline, | |||
|
feedback
|
|
You don't lauch Outlook by finding its exe. You launch it by creating it.
(Requires | |||||
feedback
|
|
It depends on the version of Office you're using but, for Office 2010 on 64-bit Windows the Microsoft Office install root folder is held in the | |||
|
feedback
|
|
I think that one of the .net environment variables will point to the default program files directory. But if a user installs anywhere this you may simply have to use the FileSystemObject object and run round the file system looking for outlook.exe. | |||||
feedback
|