FZ_FormBase.ShowHelp
Displays a help
Public Shared Function ShowHelp( _
ByVal fileName As String _
) As Integer
Parameters
fileName
|
Help file name to be displayed
Do not include a path in the file name.
|
Input
|
Return Value
Returns 0 when the help is successfully displayed.
Otherwise returns a non-zero value.
Description
Displays the specified help file.
The help file need to be stored in the following directories:
For Windows XP, under "Help\???" in the directory containing FZ-CoreRA.exe.
For FZ2 machine, under "\USBDisk\Help\???" and "\USBDisk\Manual".
* "???" is the current language mode identification name ("jpn" for Japanese and "eng" for English).
* USBDisk is supported for USBDisk to USBDisk4.
Example
Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click
' Displays a help file
ShowHelp("index.htm")
End Sub