Displays the contents of a help file. | |
Syntax: | object.Help HelpFile, HelpContext |
Parameters: |
Optional HelpFile As String - If specified, contains the name of
the help file to display.
Optional HelpContext As long - If specified, contains the context ID
of the help topic to display. If this argument is specified, the
help file must also be specified.
|
Description: | If no arguments are specified, this method
displays the main help topic for the application. Example: Sub Application_Help() Dim oCimApp As
GefApplication Set oCimApp =
CimGetScreen.Application oCimApp.Help
"c:\cimplicity\hmi\exe\cwserv.chm", 1 End Sub |