Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Programmatically call a VB.NET.exe
Message
From
13/06/2002 14:25:09
 
 
To
13/06/2002 14:13:55
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
00668132
Message ID:
00668138
Views:
17
This message has been marked as the solution to the initial question of the thread.
Hi, Randy.

>Hello everyone. How do you programmatically run a VB.NET exe from within another VB.NET exe? Thanks for the help.

I saw this on the VS help:
Private Sub StartWithArguments()
     ' Declare and instantiate a new process component.
     Dim myproc As System.Diagnostics.Process
     myproc = New System.Diagnostics.Process
 
     ' Do not receive an event when the process exits.
     myproc.EnableRaisingEvents = False
     ' Start Internet Explorer, passing in a Web page.
     myproc.Start("IExplore.exe", "http://www.microsoft.com")
End Sub
you may just change the process to start (switch from IExplore to your EXE).

HTH
Claudio Lassala
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform