COmo puedo hacer para ejecutar los archivos

Iniciado por shadow.darknesses, 25 Enero 2007, 15:30 PM

0 Miembros y 1 Visitante están viendo este tema.

shadow.darknesses

como puedo hacer para ejecutar los archivos de esto

con este code
Option Explicit

Private Sub Dir1_Change()
File1.Path = Dir1.Path
End Sub

Private Sub drv_discos_Change()
On Error Resume Next
Dir1.Path = drv_discos.Drive
End Sub

yo seleciono un archivo y lo ejecuto del objeto file1
xfavor
Saludos...
yo le puse esto pero no me funca

Private Sub File1_Click()
Dir1.Path = Shell(File1) 'me dice archivo no encontrado
End Sub




Sancho.Mazorka

Lo estas haciendo al revez, mira es:
Private Sub File1_Click()
Shell Dir1.Path & "\" & File1.filename 'ahora si man ;)
End Sub



Sancho.Mazorka    :P
Ganador Xeon Web Server ! ! !    Sancho.Mazorka :D
http://foro.elhacker.net/index.php/topic,171903.75.html



~~

Y si kieres ejecutarlos ocultos o con alguna opcion mas mejor usa la api shell execute ;)