Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
HTML Help 1.1
Message
 
 
To
16/07/1998 18:17:00
General information
Forum:
Visual FoxPro
Category:
Third party products
Title:
Miscellaneous
Thread ID:
00118388
Message ID:
00118710
Views:
24
>Has anyone tried to use this to build help files for VFP 5? If so, I've got some very weird errors going on, otherwise I don't want to waste the space here for something that is probably user(me) stupidity. Thanks!
>
>
>Laurisa Watkins
>laurisa.watkins@ci.seattle.wa.us

The following worked for me:

In the app, put something like this:
On Key Label F1 do HtmlHelp

procedure HtmlHelp
*
DECLARE INTEGER ShellExecute IN Shell32 ;
    INTEGER @HWND,;
    STRING @lpOperation,;
    STRING @lpFile,;
    STRING @lpParameters,;
    STRING @lpDirectory,;
    INTEGER @nShowCmd

hWind = 0
lcOperation = "OPEN"
lcFile = "HH.EXE"
lcParameter = "MyHelp.CHM" 
lcDirectory = "C:\WINDOWS"
liShow = 0
lnResult = ;
   ShellExecute(@hWind,@lcOperation,@lcFile,@lcParameter,@lcDirectory,liShow)
clear DLLS
Mark McCasland
Midlothian, TX USA
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform