Codex73
Codex73

Reputation: 5766

VB Open Browser Window Forms Application

Windows forms application. How can I open browser window with specific url on click of a button?

Upvotes: 1

Views: 917

Answers (1)

Reddog
Reddog

Reputation: 15579

In your Click handler use:

System.Diagnostics.Process.Start("http://www.google.com")

That will open a URL in whatever the user's default browser is.

Upvotes: 3

Related Questions