|

the software that grows
with you
| |
|
V32ShowHelp()
|
| Activated the Windows HTML help with
designated topic in view pane. |
|
Syntax
|
| V32ShowHelp( < cHelpFile >, <
cTopic >, [ cTitle ] ) |
|
Arguments
|
| < cHelpFile > a fully qualified
.chm file with drive and path components. Nothing will be happened if this
parameter is missing.
< cTopic > is the name of the .htm file compiled into the .chm
without .htm extension. If this parameter is missing, 'Default' page is
considered if found, otherwise help window opens with topic pane
displaying the warning that the page has not been found.
[ cTitle ] character string to be diaplayed in the title bar of the
help window.
|
|
Returns
|
| NIL |
|
Description
|
| This function allows you to activate the
latest help technology of Microsoft Windows. |
|
Usage
|
| Setkey( K_F1, { | | V32ShowHelp(
'C:\Vouch32\Help\Vouch32.chm', 'Index', 'Vouch32 Help Reference' } ) |
|
Tips
|
| Requires Html Help engine installed on
the machine. It is available freely from Microsoft's site. If IE 5.0 of
higher is installed on the computer, Html help engine gets installed
automatically.
cTopic can be put onto a stack to be retrieved just as:
Setkey( K_F1, { | | V32ShowHelp( 'C:\Vouch32\Help\Vouch32.chm',
GetHelpTopic(), 'Vouch32 Help Reference' } ) |
|