Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
CHM Help
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
00906069
Message ID:
00906213
Views:
20
>Hi,

>I created a chm help file with html workshop.
>In my main, I added a SET HELP TO MyHelp.chm, then added the HELP command >in one of my menus.
>No response to the HELP in the application.

>Any ideas?

>Thanks, J

Hi Jonathan,

I Have this same problem with yours, if you cannot manage try to use this code below which I used to Invoke my APP help system....
GoChm("C:\ERPS\Ryans.chm") && Change to your own chm file & path
Function GoChm
LPARAMETERS tcChm
tcChm=IIF(type("tcChm")="C",tcChm,;
	"c:\Erps\Ryans.chm")
DECLARE INTEGER ShellExecute ;
	IN SHELL32.dll ;
	INTEGER nWinhandle,;
	STRING cOperation,;
	STRING cFilename,;
	STRING cParameters,;
	String cDirectory,;
	INTEGER nShowWindow
	
DECLARE INTEGER FindWindow ;
	IN WIN32API ;
	STRING cNull,STRING cWinName
	
RETURN ShellExecute(FindWindow(0,_SCREEN.caption),;
	"Open",tcChm,;
	"","c:\Windows\Temp\",0)
By sharing working code to others, we can make VFP as one of the favorite Database Application Development, remember the success of PERL Language?
Jojo R. dela Cuesta, B.Sc.
eConsultant, Programmer
Dalplus Technologies
http://www.dalplus.com
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform