|
-
Oct 7th, 2003, 02:58 AM
#1
Thread Starter
Addicted Member
How to launch default Emailer?
How can I launch default emailer from my application and attach a file to Email message?
I used code, passing as a parameter string ‘mailto:[email protected]’
Dim myproc As System.Diagnostics.Process
myproc = New System.Diagnostics.Process()
Dim s As System.Diagnostics.ProcessStartInfo
myproc.EnableRaisingEvents = False
myproc.Start(strRecepient)
Is there another way of doing that?
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
|