DIAdem Help

VBScript constant: vbMsgBoxHelpButton

  • Updated2024-09-12
  • 1 minute(s) read

VBScript constant: vbMsgBoxHelpButton

Specifies that DIAdem displays the Help button for the MsgBox method.

Object.vbMsgBoxHelpButton
ObjectVBS
The constant belongs to the VBS functionality. You do not need to specify this object.
Object.vbMsgBoxHelpButtonVariant 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)