Windows System VB.Net

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