#include #include #include #include Local $Form1 = GUICreate("Test GUI", 615, 437, 192, 124) Local $Label2 = GUICtrlCreateLabel("Label2", 120, 88, 340, 241) GUICtrlSetColor(-1, $COLOR_RED ) Local $Radio26 = GUICtrlCreateRadio ("Black", 430, 96, 113, 17) ;Black GUICtrlSetColor ( $Radio26, $COLOR_YELLOW ) ;GUICtrlSetBkColor ( -1, $COLOR_BLACK ) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd