|
|
|
|
|
- Context-sensitive help
- HLP format
HelpFile (Function) In french: FichierAide Returns or modifies the name of the help file used by the context-sensitive help of a window.
HelpFile(WIN_Window1, "D:\WINDEV\Help\Help.chm")
ResHelpFile = HelpFile("")
Syntax
Finding out the name of help file used for the context-sensitive help Hide the details
<Result> = HelpFile(<Window name>)
<Result>: Character string Name and path of the help file (CHM file) associated with the context-sensitive help window. <Window name>: Character string Name of window whose associated help file you want to get. If this parameter corresponds to an empty string (""), the window used is the window to which the current process belongs.
Modifying the help file used for the context-sensitive help Hide the details
<Result> = HelpFile(<Window name> [, <Help file name>])
<Result>: Character string Name and path of the help file (CHM file) associated with the context-sensitive help window. before modification. <Window name>: Character string Name of the window used. If this parameter corresponds to an empty string (""), the window used is the window to which the current process belongs. <Help file name>: Optional character string Name and path of help file (CHM file) used for context-sensitive help. A relative path or a UNC path can be used. Remarks Context-sensitive help The context-sensitive help is displayed when the user clicks the "What is it" icon in the window (? icon).  This context-sensitive help is based: - On the window style ("Icon of context-sensitive help" checked).
- On the file for context-sensitive help defined:
- in the window editor ("Help" tab in the description window of window).
- by HelpFile.
- On the help number defined in the control description.
HLP format This function can also be used to manipulate HLP files for compatibility. This help file format is no longer supported by recent versions of Windows.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|