Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/05/2013, 06:04
Avatar de bookmaster
bookmaster
 
Fecha de Ingreso: febrero-2002
Ubicación: Toledo
Mensajes: 976
Antigüedad: 22 años, 2 meses
Puntos: 67
Respuesta: Ejecutar .exe

Prueba con esto:

Código vb:
Ver original
  1. Dim Ejecuta As New Process
  2.         Try
  3.             With Ejecuta
  4.                 .StartInfo.UseShellExecute = False
  5.                 .StartInfo.FileName = "C:\Windows\system32\calc.exe"
  6.                 .StartInfo.CreateNoWindow = True
  7.                 .EnableRaisingEvents = True
  8.                 .Start()
  9.             End With
  10.  
  11.         Catch ex As Exception
  12.             MsgBox(ex.Message)
  13.         End Try

En este ejemplo te abre la calculadora de windows. En principio solo tienes que modificar el nombre del ejecutable para poner el que tu quieras.
__________________
Decir si te a funcionado la respuesta es ¡GRATIS!. Por favor indicarlo.
http://www.lohacemosweb.net
http://tutoriales.lohacemosweb.net