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.java2java.com"
Process.Start(startInfo)
End Sub
End Class
|