Ver Mensaje Individual
  #11 (permalink)  
Antiguo 19/01/2005, 09:48
RadicalEd
 
Fecha de Ingreso: octubre-2004
Ubicación: COLOMBIA
Mensajes: 240
Antigüedad: 19 años, 7 meses
Puntos: 3
No se si esto es lo que necesites, pero aqui tienes
Código:
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_SHOW = 5
Private Sub CmdOpen_Click()
ShellExecute 0, "open", "file://C:\WINDOWS\Help\ciquery.htm", "", "", SW_SHOW
End Sub