Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Programmatically call a VB.NET.exe
Message
De
13/06/2002 14:25:09
 
 
À
13/06/2002 14:13:55
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Divers
Thread ID:
00668132
Message ID:
00668138
Vues:
16
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform