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.
Printable View
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.
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
thanks works fine :)