Process with arguments : Process « Windows System « VB.Net
- VB.Net
- Windows System
- Process
Process with arguments
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
Related examples in the same category