CommandButton class
A CommandButton is a Win32 native push-button control used to trigger an action — a click-handler runs every time the user presses it. The control is normally placed on a Form or UserControl at design time. The default property is Value and the default event is Click.
Private Sub Form_Load()
cmdOK.Caption = "&OK"
cmdOK.Default = True ' Enter triggers it
cmdCancel.Caption = "Cancel"
cmdCancel.Cancel = True ' Esc triggers it
End Sub
Private Sub cmdOK_Click()
Unload Me
End Sub
- Triggering a click
- Cancel and Default
- Caption and mnemonics
- Graphical style
- Properties
- Methods
- Events
Triggering a click
A CommandButton raises Click every time the user presses it — by left-clicking, by pressing Space or Enter while it has focus, by typing the Alt+ access key marked in the Caption, by pressing Esc when Cancel is True, or by pressing Enter anywhere on the form when Default is True. Code can fire the same event by assigning True to Value:
cmdOK.Value = True ' raises cmdOK_Click
Value is reset to False immediately after the click handler returns, so reading it almost always returns False.
Cancel and Default
Cancel and Default are mutually-form-exclusive — at most one button on a form can have either set to True. Assigning True to Cancel or Default on one button automatically clears the same property on whatever button held it before. Setting Default = True also gives the button the bold “default push-button” border.
Caption and mnemonics
The text on the button face comes from Caption. An ampersand in the caption marks the next character as a keyboard mnemonic: pressing Alt+ that character moves the focus to the button and raises Click (provided no other control on the form competes for the same access key). Use && to display a literal ampersand.
cmdSave.Caption = "&Save && Close" ' renders as: Save & Close
Graphical style
When Style is vbButtonGraphical, the button is owner-drawn and displays the bitmaps assigned to Picture, DownPicture, and DisabledPicture alongside the caption. PictureAlignment, Padding, and PictureDpiScaling control how the picture is positioned. Changing Style at run time recreates the underlying window.
Properties
Appearance
Determines how the control’s border is drawn by the OS. A member of AppearanceConstants: vbAppearFlat or vbAppear3d (default).
BackColor
The background colour, as an OLE_COLOR. Defaults to the system 3-D face colour. Honoured only when Style is vbButtonGraphical — the standard Win32 button always paints with the theme colour.
Cancel
When True, this button is fired by the Esc key from anywhere on its form. Boolean, default False. Only one CommandButton on a form can hold this property — assigning True to a second button automatically clears it on the previous one.
Caption
The text displayed on the button. An ampersand marks the next character as a mnemonic; && produces a literal ampersand. The string is read directly from the underlying window — assigning to Caption is reflected immediately.
Syntax: object.Caption [ = string ]
CausesValidation
Determines whether the previously focused control’s Validate event runs before this control receives the focus. Boolean, default True. CommandButton itself does not raise Validate.
ControlType
A read-only ControlTypeConstants value identifying this control as a command button. Always vbCommandButton.
Default
When True, this button is fired by the Enter key from anywhere on its form (unless another control is currently consuming Enter). The button also displays the bold “default push-button” border. Boolean, default False. Only one CommandButton on a form can hold this property — assigning True to a second button automatically clears it on the previous one.
DisabledPicture
A StdPicture drawn instead of Picture when the control is disabled and Style is vbButtonGraphical.
DownPicture
A StdPicture drawn instead of Picture while the control is in the depressed state, when Style is vbButtonGraphical.
DragIcon
A StdPicture used as the mouse cursor while the control is being drag-and-dropped (see Drag and DragMode).
DragMode
Whether the control should drag itself when the user holds the mouse over it. A member of DragModeConstants: vbManual (0, default — call Drag from code) or vbAutomatic (1).
Enabled
Determines whether the control accepts user input. A disabled button shows its caption but is dimmed and ignores keyboard and mouse interaction (including its mnemonic and any Cancel/Default behaviour). Boolean, default True.
Font
The StdFont used to render Caption. The convenience properties FontName, FontSize, FontBold, FontItalic, FontStrikethru, and FontUnderline read or write the corresponding members of this object.
ForeColor
The text colour for the caption, as an OLE_COLOR. Defaults to the system button-text colour. Honoured only when Style is vbButtonGraphical.
Height
The control’s height, in twips by default (or in the container’s ScaleMode units). Single.
HelpContextID
A Long identifying a topic in the application’s help file, retrieved when the user presses F1 while the control has focus.
hWnd
The Win32 window handle for the underlying button, as a LongPtr. Read-only. Useful for passing to API functions.
Index
When the control is part of a control array, the Long zero-based index of this instance within the array. Read-only at run time.
Left
The horizontal distance from the left edge of the container to the left edge of the control. Single.
MaskColor
Note
Reserved for compatibility with VB6; not currently implemented in twinBASIC.
MouseIcon
A StdPicture used as the mouse cursor when MousePointer is vbCustom and the pointer is over the control.
MousePointer
The mouse cursor shown when the pointer is over the control. A member of MousePointerConstants.
Name
The unique design-time name of the control on its parent form. Read-only at run time.
OLEDropMode
How the control responds to OLE drops. A restricted member of OLEDropConstants: vbOLEDropNone or vbOLEDropManual. Automatic-drop mode is not supported on a CommandButton.
Opacity
The control’s opacity as a percentage (0–100, default 100). Values outside the range are clamped on Initialize. Requires Windows 8 or later for child controls.
Padding
The number of pixels of empty space inserted between the picture and the caption (when PictureAlignment is vbAlignLeft or vbAlignRight) or between the caption and the corresponding edge (when vbAlignTop or vbAlignBottom). Long, default 2. Only meaningful when Style is vbButtonGraphical.
Parent
A reference to the Form (or UserControl) that contains this control. Read-only.
Picture
A StdPicture drawn on the button when Style is vbButtonGraphical. Assigning Nothing restores an empty picture rather than removing the bitmap surface.
PictureAlignment
How Picture is positioned relative to the caption when Style is vbButtonGraphical. A member of AlignConstants: vbAlignNone, vbAlignTop (default), vbAlignBottom, vbAlignLeft, vbAlignRight.
PictureDpiScaling
When True, scales Picture, DownPicture, and DisabledPicture by the current DPI factor before drawing. Boolean, default False.
RightToLeft
Note
Reserved for compatibility with VB6; not currently implemented in twinBASIC.
Style
Selects between the standard Win32 push-button appearance and an owner-drawn graphical button. A member of ButtonConstants: vbButtonStandard (0, default) or vbButtonGraphical (1). Changing Style at run time recreates the underlying window.
TabIndex
The position of the control in the form’s TAB-key navigation order. Long.
TabStop
Whether the user can reach the control by pressing the TAB key. Boolean, default True. A disabled control is skipped regardless of this setting.
Tag
A free-form String the application can use to associate custom data with the control. Ignored by the framework.
ToolTipText
A multi-line String displayed as a tooltip when the user hovers over the control.
Top
The vertical distance from the top of the container to the top of the control. Single.
TransparencyKey
An OLE_COLOR that, when set, becomes fully transparent in the rendered control. Default -1 disables the effect. Requires Windows 8 or later for child controls.
UseMaskColor
Note
Reserved for compatibility with VB6; not currently implemented in twinBASIC.
Value
A trigger for raising Click from code. Default property.
Syntax: object.Value [ = boolean ]
Assigning True raises Click and resets Value to False immediately after the handler returns; assigning False does nothing. Reading Value therefore returns False in almost every situation.
cmdOK.Value = True ' equivalent to a user click
Visible
Whether the control is shown. Boolean, default True.
VisualStyles
Whether the OS theme engine should be used when drawing the control. Boolean, default True.
WhatsThisHelpID
A Long identifying a “What’s This?” help-pop-up topic in the application’s help file. See ShowWhatsThis.
Width
The control’s width. Single.
Methods
Drag
Begins, completes, or cancels a manual drag-and-drop operation. Typically called from a MouseDown handler when DragMode is vbManual.
Syntax: object.Drag [ Action ]
- Action
- optional A member of DragConstants: vbCancel (0), vbBeginDrag (1, default), or vbEndDrag (2).
Move
Repositions and optionally resizes the control in a single call.
Syntax: object.Move Left [, Top [, Width [, Height ] ] ]
- Left
- required A Single giving the new horizontal position.
- Top, Width, Height
- optional New values for the corresponding properties. Omitted values are left unchanged.
OLEDrag
Initiates an OLE drag operation from the control, raising the OLEStartDrag event so the application can populate the DataObject.
Syntax: object.OLEDrag
Refresh
Forces an immediate repaint of the control.
Syntax: object.Refresh
SetFocus
Moves the input focus to the control. The control must be both Visible and Enabled, or run-time error 5 (Invalid procedure call or argument) is raised.
Syntax: object.SetFocus
ShowWhatsThis
Displays the topic identified by WhatsThisHelpID as a “What’s This?” pop-up.
Syntax: object.ShowWhatsThis
ZOrder
Brings the control to the front or back of its sibling stack.
Syntax: object.ZOrder [ Position ]
- Position
- optional A member of ZOrderConstants: vbBringToFront (0, default) or vbSendToBack (1).
Events
Click
Raised every time the button is pressed — by mouse click, by Space or Enter while focused, by the Alt+ access key in the Caption, by Esc when Cancel is True, by Enter when Default is True, or by an assignment of True to Value. Default event.
Syntax: object_Click( )
DragDrop
Raised on the destination control when a manual drag operation ends over it.
Syntax: object_DragDrop( Source As Control, X As Single, Y As Single )
DragOver
Raised on the control under the cursor while a manual drag operation is in progress.
Syntax: object_DragOver( Source As Control, X As Single, Y As Single, State As Integer )
GotFocus
Raised when the control receives the input focus.
Syntax: object_GotFocus( )
KeyDown
Raised when the user presses any key while the control has focus.
Syntax: object_KeyDown( KeyCode As Integer, Shift As Integer )
KeyPress
Raised when the user types a character that produces an ANSI keystroke.
Syntax: object_KeyPress( KeyAscii As Integer )
KeyUp
Raised when the user releases a key while the control has focus.
Syntax: object_KeyUp( KeyCode As Integer, Shift As Integer )
LostFocus
Raised when the control loses the input focus.
Syntax: object_LostFocus( )
MouseDown
Raised when the user presses any mouse button over the control.
Syntax: object_MouseDown( Button As Integer, Shift As Integer, X As Single, Y As Single )
MouseMove
Raised when the cursor moves over the control.
Syntax: object_MouseMove( Button As Integer, Shift As Integer, X As Single, Y As Single )
MouseUp
Raised when the user releases a mouse button over the control.
Syntax: object_MouseUp( Button As Integer, Shift As Integer, X As Single, Y As Single )
OLECompleteDrag
Raised on the source control when the OLE drag operation finishes, indicating which effect (copy, move, none) the destination accepted.
Syntax: object_OLECompleteDrag( Effect As Long )
OLEDragDrop
Raised on the destination control when the user drops data on it.
Syntax: object_OLEDragDrop( Data As DataObject, Effect As Long, Button As Integer, Shift As Integer, X As Single, Y As Single )
OLEDragOver
Raised on the destination control while an OLE drag passes over it.
Syntax: object_OLEDragOver( Data As DataObject, Effect As Long, Button As Integer, Shift As Integer, X As Single, Y As Single, State As Integer )
OLEGiveFeedback
Raised on the source control during a drag so the application can adjust the cursor or other visual feedback.
Syntax: object_OLEGiveFeedback( Effect As Long, DefaultCursors As Boolean )
OLESetData
Raised on the source control when the destination requests data in a format that was registered but not yet supplied.
Syntax: object_OLESetData( Data As DataObject, DataFormat As Integer )
OLEStartDrag
Raised on the source control at the start of an OLE drag, so the application can populate the DataObject and choose the allowed effects.
Syntax: object_OLEStartDrag( Data As DataObject, AllowedEffects As Long )