Process.StartInfo : Process « System.Diagnostics « VB.Net by API






Process.StartInfo

  
Imports System
Imports System.Data
Imports System.Windows.Forms
Imports System.Drawing
Imports System.Diagnostics
Imports System.Drawing.Printing

Public Class MainClass
    
    Shared Sub Main()
        
        Dim new_process As New Process
        new_process.StartInfo.FileName = Application.ExecutablePath
        new_process.StartInfo.Verb = "Open"
        new_process.Start()

    End Sub
End Class

   
    
  








Related examples in the same category

1.Process.GetCurrentProcess
2.Process.GetProcessesByName
3.Process.Kill
4.Process.NonpagedSystemMemorySize
5.Process.Start
6.Process.VirtualMemorySize64