Shell

Leeus

Well-known member
Joined
Dec 23, 2002
Messages
50
How do I call the shell as in VB6, I want to run a shell command, it is a perl mrtg config maker so needs to be run at the shell?
 
Use the .NET method:

Code:
System.Diagnostics.Process.Start("c:\test.exe")

or

System.Diagnostics.Process.Start("c:\test.exe", "parameters")
 
Back
Top