Ver Mensaje Individual
  #5 (permalink)  
Antiguo 04/02/2012, 03:28
cucurus123
 
Fecha de Ingreso: enero-2012
Mensajes: 12
Antigüedad: 12 años, 9 meses
Puntos: 0
Pregunta Respuesta: Como ejecutar programas de un CD con una aplicacion echa con Visual Basic?

Cita:
Iniciado por JonathanB Ver Mensaje
Código vb:
Ver original
  1. Private Function getAppPath() As String
  2.    Dim path As String
  3.    
  4.    ' Obtiene el path de la aplicación
  5.   path = My.Application.Info.DirectoryPath()
  6.    
  7.    ' Añade el backslash en caso el ejecutable se encuentre en la raiz de una unidad
  8.   If Not path.Substring(path.Length - 1) = "\" Then
  9.       path += "\"
  10.    End If
  11.    
  12.    ' Devuelve la variable con la ruta completa
  13.   Return path
  14. End Function
  15.  
  16.  
  17. Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
  18.    Dim ruta As String
  19.    ruta = "firefox\setup.exe"
  20.    Shell(getAppPath() + ruta, Microsoft.VisualBasic.AppWinStyle.MaximizedFocus)
  21. End Sub
Hola, Probe tu codigo, y me salio un error al depurar el proyecto...

La linea de Shell esta remarcada, y me sale el siguiente mensaje:

NO SE CONTROLO File NOT Found Exception...

Que hago?

Gracias por tu ayuda