Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to 'Run' an external APP
Message
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Divers
Thread ID:
00968546
Message ID:
00968565
Vues:
8
Actually, there is a built-in way of doing this in .net:
System.Diagnostics.ProcessStartInfo info = new System.Diagnostics.ProcessStartInfo();
info.Arguments = ""; //What ever argument the app requires
info.FileName = @"C:\Program Files\TheApplication.exe";
System.Diagnostics.Process.Start(info);
>>Hi.
>>Is there a way of running an external App from c Sharp
>> (As in the VFP Run /n command )
>>
>>Regards,
>>
>Gerard,
>
>Through COM Interop you could create a WScript.Shell object, and use its Run() method.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform