I've got a WinForms app in which I have the need to refer the user to a web page with documentation/help. I realize the LinkButton would get the trick done, but what I want is a standard Button control to launch the system default browser when that button is clicked. The only reference code I've got for this references the Win32 API, hooking the ShellExecute command:
ShellExecute(Me.Handle.ToInt32, "Open", "http://www.stackoverflow.com/", CStr(0), CStr(0), WindowStyle.SW_MAXIMIZE)
Does anyone else know how to do this in a "proper and pure" dotnet way?