Results 1 to 3 of 3

Thread: Opening webpage in external IE window

  1. #1

    Thread Starter
    New Member
    Join Date
    Oct 2002
    Posts
    9

    Opening webpage in external IE window

    Couldn't find how to do this in VB.NET ??

    I want to open a webpage in an external IE window (outside my program). For example a user clicks a button and a webpage loads in a separate IE window.

    Hopefully an easy one for someone

    Thanks,
    Shannon.

  2. #2
    Frenzied Member dynamic_sysop's Avatar
    Join Date
    Jun 2003
    Location
    Ashby, Leicestershire.
    Posts
    1,142
    Code:
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Dim brWeb As New Process()
            brWeb.Start("IEXPLORE", "http://google.com")
        End Sub
    ~
    if a post is resolved, please mark it as [Resolved]
    protected string get_Signature(){return Censored;}
    [vbcode][php] please use code tags when posting any code [/php][/vbcode]

  3. #3

    Thread Starter
    New Member
    Join Date
    Oct 2002
    Posts
    9
    thanks works fine

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