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
Printable View
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
or I think this work too...Code:Dim PSI As New ProcessStartInfo("OUTLOOK.EXE")
PSI.FileName = "mailto:[email protected]"
Process.Start(PSI)
Code:Dim PSI As New Process
PSI.StartInfo.FileName = "OUTLOOK.EXE"
PSI.StartInfo.Arguments = "mailto:[email protected]"
PSI.Start()
Hi Buldog,Quote:
Originally Posted by Bulldog
Thanks, that worked! :thumb:
Wkr,
sparrow1