Help.. How do I add the Process Component to the tool box?

You don't need to. You can declare it from code:
Visual Basic:
Dim p As New Process()

p.Start("test.exe")
'etc
 
Back
Top