Uses the ProcessStartInfo class to start new processes, both in a minimized mode.
Imports System
Imports System.Diagnostics
Imports System.ComponentModel
Class MyProcess
Shared Sub Main()
Dim startInfo As New ProcessStartInfo("IExplore.exe")
startInfo.WindowStyle = ProcessWindowStyle.Minimized
Process.Start(startInfo)
startInfo.Arguments = "www.java2s.com"
Process.Start(startInfo)
End Sub
End Class