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