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
|