open a website from a windows application in any browser
-
Hi How can I open a website from a windows application in any browser Thanks Sebastian
-
Hi How can I open a website from a windows application in any browser Thanks Sebastian
By using Process.Start with a URL, you can launch the default browser. To specify the browser, you'd need to find the exe on the HDD and know how to launch it with a URL.
Christian Graus Driven to the arms of OSX by Vista.
-
Hi How can I open a website from a windows application in any browser Thanks Sebastian
Actually...This will launch any default browser at the URL you specify Private Sub LaunchURL(byval URL as String) Try Process.Start(URL) Catch ex as exception End Try End Sub You can then use: LaunchURL("http://urlhere") from anywhere within your code.. The Try is needed because some browsers like Firefox will sometimes return an error for no reason... Steven