Mega Code Archive

 
Categories / VB.Net / Windows System
 

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