Shell

Leeus

Regular
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:

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

'or

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