
04/03/2006, 12:07
|
 | | | Fecha de Ingreso: diciembre-2005 Ubicación: Camarillo, CA
Mensajes: 242
Antigüedad: 19 años, 3 meses Puntos: 2 | |
Esto te puede ayudar.
Dim myProcess As System.Diagnostics.Process = New System.Diagnostics.Process Dim appPath AsString myProcess.StartInfo.FileName = "C:\Program Files\Program Folder\Program.exe" myProcess.StartInfo.WindowStyle = ProcessWindowStyle.Normal myProcess.Start() |