Mega Code Archive

 
Categories / VB.Net / Windows System
 

Process with arguments

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