launch internet explorer in winforms using vb.net

Visual Basic:
'/// if IE is the default browser
System.Diagnostics.Process.Start("C:\your_file_name.html")

'/// or

System.Diagnostics.Process.Start("EXPLORER.EXE , "C:\your_file_name.html")

'/// or

System.Diagnostics.Process.Start("EXPLORER.EXE , "http://some_site.com")
 
Back
Top