VBScript constant: vbMsgBoxHelpButton
- Updated2024-09-12
- 1 minute(s) read
Constants > MsgBox Constants > VBScript constant: vbMsgBoxHelpButton
VBScript constant: vbMsgBoxHelpButton
Specifies that DIAdem displays the Help button for the MsgBox method.
Object.vbMsgBoxHelpButton
| Object | VBS The constant belongs to the VBS functionality. You do not need to specify this object. |
| Object.vbMsgBoxHelpButton | Variant with read access vbMsgBoxHelpButton has the value 16384. |
The following example displays the Yes, No, Abort, and Help buttons in a message:
Call MsgBox("Hello World", vbYesNoCancel + vbDefaultButton4 + vbMsgBoxHelpButton)