Dec 23, 2002 #1 L 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?
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?
Dec 23, 2002 #2 A AndreRyan Well-known member Joined Jan 23, 2002 Messages 366 As in Shell(CommandLine)?
Dec 23, 2002 #4 Divil Well-known member Joined Nov 17, 2002 Messages 2,748 Use the .NET method: Code: System.Diagnostics.Process.Start("c:\test.exe") or System.Diagnostics.Process.Start("c:\test.exe", "parameters")
Use the .NET method: Code: System.Diagnostics.Process.Start("c:\test.exe") or System.Diagnostics.Process.Start("c:\test.exe", "parameters")