Start a Process : Process « Windows System « VB.Net
- VB.Net
- Windows System
- Process
Start a Process
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