
12/06/2004, 04:04
|
 | | | Fecha de Ingreso: mayo-2004 Ubicación: Lucentum
Mensajes: 6.192
Antigüedad: 21 años Puntos: 74 | |
Podes usar la función ShellExecute de la API de Windows, aca tenes un ejemplo:
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Const SW_SHOWNORMAL = 1
Private Sub Form_Load()
ShellExecute Me.hwnd, vbNullString, "f:\archivo.html", vbNullString, "f:\", SW_SHOWNORMAL
End Sub
__________________ ¡Peron cumple, Evita dignifica! VIVA PERON CARAJO |