Imports System
Imports System.Diagnostics
Imports System.ComponentModel
Class MyProcess
Shared Sub Main()
Process.Start("IExplore.exe", "www.java2s.com")
Process.Start("IExplore.exe", "C:\myFile.htm")
Process.Start("IExplore.exe", "C:\myFile.asp")
End Sub
End Class