Exécuter un .exe depuis une application .NET
Ces quelques lignes pour exécuter un exécutable depuis une application VB.NET Dim startInfo As System.Diagnostics.ProcessStartInfo Dim pStart As New System.Diagnostics.Process startInfo = New System.Diagnostics.ProcessStartInfo("C:\file.exe") pStart.StartInfo...