Antonio,
I'm now trying to use .chm help files via FWH syntax.
1. With .HLP files I just needed to do a
SET HELPFILE TO myhlphelp.hlp
and I could call up the help either by pressing F1 or by calling
WINHELP(GetHelpFile()).
2. With .CHM files it seems I need to do a
SET HELPFILE TO mychmhelp.chm
and I can call up the help either by pressing F1 or I must (?) call
CHMHELPTOPIC().
Note that calling WINHELP(GetHelpFile()) does nothing.
Also, even with the F1 key, although it works fine with the FWH .chm files, for some reason or other my own .chm file (which incidentally has no index entries), supplied by my client, seem to require
HELPSETTOPIC('WINHELP')
after the
SET HELPFILE TO mychmhelp.chm,
otherwise the 1st topic that pops up displays as a"This program cannot display the webpage" error (although any subsequent movement within the help file removes this message).
-------------
Temporarily, to save me making wholesale changes in my code to convert all references of
WINHELP(GetHelpFile())
to
CHMHELPTOPIC(),
I've now simply created my own WINHELP() function which calls
CHMHELPTOPIC().
Is calling CHMHELPTOPIC() the recommended way to invoke .chm help from a button / menu etc?
Previously, I've been successfully using
Winexec("HH.EXE " +"mychmhelp.chm")
to invoke .chm help from a button / menu etc. That works fine but I'd rather eliminate having to call WINEXE.exe and go the recommended FWH way instead.
TIA
Colin
(P.S. I looked in TESTHLP2.prg but it didn't seem to clarify the matter for me).