use VB system call to activate one executable file

CharlieChau

Active member
Joined
Jun 15, 2004
Messages
26
Programming Experience
Beginner
Hi,

How can I use the VB system call to activate one executable file such as notepad in the window's applications.

Thanks,
/CC.
 
System.Diagnostics.Process.Start("Notepad.exe")

Should work.
 
Back
Top