TEL : +33 (0)9 72 13 15 17
Accueil
Services
Logiciels
Competences
Contact
La boutique
Forums
Windows Forms FAQ resources
1. Windows Forms Deployment
1.1 How can I run an EXE from within my application?
Use the Process class found in the System.Diagnostics namespace.
[C#]
Process proc = new Process();
proc.StartInfo.FileName = @"Notepad.exe";
proc.StartInfo.Arguments = "";
proc.Start();
[VB.NET]
Dim proc As New Process()
proc.StartInfo.FileName = "Notepad.exe"
proc.StartInfo.Arguments = ""
proc.Start()
online visitor count