Alright, I ran into yet another snag.
How do I open a webbrowser and have it go to a site, for an example, lets say http://www.yahoo.com also, how I do click a button and have it open a dialog to mail to me?
Thanks guys.
-Nick
Printable View
Alright, I ran into yet another snag.
How do I open a webbrowser and have it go to a site, for an example, lets say http://www.yahoo.com also, how I do click a button and have it open a dialog to mail to me?
Thanks guys.
-Nick
You can use Process.Start to do both of those. This will fire up the user's default browser and mail client to do the work.
VB Code:
Process.Start("http://www.yahoo.com") Process.Start("mailto:[email protected]")