Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Using On-Line Help
Message
De
08/03/2001 15:23:28
 
 
À
08/03/2001 14:39:14
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00483282
Message ID:
00483303
Vues:
8
>can anyone tell me how I can include on-help with my application and insert my own user's manual for an application that i have written?

Hi Jeff,

What we do here is call a .pdf document using the Shellexecute method.

DECLARE INTEGER ShellExecute ;
IN SHELL32.DLL ;
INTEGER nWinHandle,;
STRING cOperation,;
STRING cFileName,;
STRING cParameters,;
STRING cDirectory,;
INTEGER nShowWindow

* Execute the function
* 'cpath_str' is the full pach & name of the file
nexecute_success = ShellExecute(0,"open",cpath_str,"","",1)
* If the function was unable to open the file for ANY reason
IF nexecute_success < 32
MESSAGEBOX("Help file to come.", 48, "")
ENDIF

HTH
Mike
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform