Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Problem in running help.file
Message
 
 
To
31/07/2005 13:49:07
Chandan Chakraborty
Bangiya Gramin Vikash Bank
Raiganj, India
General information
Forum:
Visual FoxPro
Category:
Other
Environment versions
Visual FoxPro:
VFP 6
OS:
Windows '98
Network:
Windows 98
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01037352
Message ID:
01037354
Views:
21
This message has been marked as the solution to the initial question of the thread.
I would recomend to use ShellExecute
PROCEDURE help
DECLARE INTEGER ShellExecute IN shell32.dll ;
	INTEGER hndWin, ;
	STRING cAction, ;
	STRING cFileName, ;
	STRING cParams, ;
	STRING cDir, ;
	INTEGER nShowWin
lcHelpFileName = FULLPATH("help.htm")
ShellExecute(0, "Open", lcHelpFileName, "", "", 1)
RETURN
Even better, you can use VFP built-in help system with SET HELP command in which case you wouldn't need ON KEY LABEL.


>I have written help file in html and it is runnung well in Windows 98. But in Windows XP it id not running. I used the follwing codes:
>
>On Key label F1 do help

>Procedure help
>Save screen to FFF
>!start explorer help.htm
>restore screen from FFF
>retu
>
>Chandan
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform