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

You dont need to. You can declare it from code:
Code:
Dim p As New Process()

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