Syntax:
RADIOBUTTON text, id, x, y, width, height[, style]
The RADIOBUTTON statement creates a radio-button control. The control is a small circle that has the given text displayed to its right. The control highlights the circle and sends a message to its parent window when the user selects the button. The control removes the highlight and sends a message when the button is next selected. The RADIOBUTTON 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_RADIOBUTTON.
text
Example
This example creates a radio-button control that is labeled "Italic."
RADIOBUTTON "Italic", 101, 10, 10, 24, 50