26/04/2003, 12:45
|
| | Fecha de Ingreso: abril-2003
Mensajes: 6
Antigüedad: 21 años, 7 meses Puntos: 0 | |
Si lo que quieres es usar un botton que haga llamada a un archivo de ayuda creado por separada puedes usar
'primero declaras
Public 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
' y al boton le das esta propiedad
Call ShellExecute(0&, "Open", App.Path & "\help.hlp", "", vbNullString, 1)
Espero y esto te ayude
un saludo |