|
-
May 23rd, 2007, 02:49 PM
#1
[RESOLVED] [2005] Open Microsoft Outlook
Hi All,
Like the title said.
How can I open Outlook and show the email address into the To textbox from Outlook.
If you can tell me only to open Outlook then It would be very good.
Thanks in advance,
sparrow1
Last edited by sparrow1; May 23rd, 2007 at 04:21 PM.
-
May 23rd, 2007, 04:22 PM
#2
Re: [2005] Open Microsoft Outlook
Code:
Dim PSI As New ProcessStartInfo("OUTLOOK.EXE")
PSI.FileName = "mailto:[email protected]"
Process.Start(PSI)
or I think this work too...
Code:
Dim PSI As New Process
PSI.StartInfo.FileName = "OUTLOOK.EXE"
PSI.StartInfo.Arguments = "mailto:[email protected]"
PSI.Start()
-
May 23rd, 2007, 04:32 PM
#3
Re: [2005] Open Microsoft Outlook
 Originally Posted by Bulldog
Code:
Dim PSI As New ProcessStartInfo("OUTLOOK.EXE")
PSI.FileName = "mailto:[email protected]"
Process.Start(PSI)
or I think this work too...
Code:
Dim PSI As New Process
PSI.StartInfo.FileName = "OUTLOOK.EXE"
PSI.StartInfo.Arguments = "mailto:[email protected]"
PSI.Start()
Hi Buldog,
Thanks, that worked!
Wkr,
sparrow1
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|