Results 1 to 2 of 2

Thread: Opening webpages and email links?

  1. #1

    Thread Starter
    Junior Member
    Join Date
    May 2004
    Location
    Ma
    Posts
    19

    Opening webpages and email links?

    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

  2. #2
    Your Ad Here! Edneeis's Avatar
    Join Date
    Feb 2000
    Location
    Moreno Valley, CA (SoCal)
    Posts
    7,339
    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:
    1. Process.Start("http://www.yahoo.com")
    2. Process.Start("mailto:[email protected]")

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width