Syntax:
PUSHBUTTON text, id, x, y, width, height[, style]
The PUSHBUTTON statement creates a pushbutton control. The control is a round-cornered rectangle containing the given text. The control sends a message to its parent whenever the user chooses the control. The PUSHBUTTON statement, which you can use only in a DIALOG or WINDOW statement, defines the text, identifier, dimensions, and attributes of a control window. The predefined class for this control is WC_BUTTON. If you do not specify a style, the default style is BS_PUSHBUTTON and WS_TABSTOP.
text
Example
This example creates a pushbutton control that is labeled "OK."
PUSHBUTTON "OK", 101, 10, 10, 100, 100