|
|
|
|
|
HelpNumber (Property) In french: NuméroAide
The HelpNumber property is used to identify and modify the help number associated with a control. This number corresponds to the "Help number" control in the "Help" tab of the control description window. This help number corresponds to the number of the help page that will be displayed when the user opens the context help of the control (by pressing F1, or by clicking "?" in the menu bar and clicking the control). IF Mode = "Add" THEN // Display the help for "Add" BTN_Button1.HelpNumber = 12 ELSE // Display the help for "Modify" BTN_Button1.HelpNumber = 48 END
Syntax
Finding out the help number associated with a control Hide the details
<Help number> = <Control used>.HelpNumber
<Help number>: Integer Help number associated with the control. <Control used>: Control name Name of the control used.
Modifying the help number associated with a control Hide the details
<Control used>.HelpNumber = <New help number>
<Control used>: Control name Name of the control used. <New help number>: Integer New help number associated with the control.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|