#include <GUIConstantsEx.au3>
$Form1 = GUICreate("Form1", 200, 100)
$Checkbox1 = GUICtrlCreateCheckbox('', 10, 10, 16, 16)
GUICtrlCreateLabel('Checkbox1', 28, 11, 60, 16)
GUICtrlSetColor(-1, 0xFF0000)
$Radio1 = GUICtrlCreateRadio('', 10, 40, 16, 16)
GUICtrlCreateLabel('Radio1', 28, 42, 60, 16)
GUICtrlSetColor(-1, 0x0000FF)
GUISetState()
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd