Мне нужно чтобы Radio1, Radio2 и Radio1_a, Radio2_a переключались независимо друг от друга
Код:
#include <GUIConstants.au3>
$hGUI = GUICreate("Проверка элементов Radio", 410, 450, 278, 149)
$radio1 = GUICtrlCreateRadio ("Radio1", 10, 10, 120, 20)
GUICtrlSetState ($radio1,$GUI_CHECKED)
$radio2 = GUICtrlCreateRadio ("Radio2", 10, 40, 120, 20)
$checkCN = GUICtrlCreateCheckbox ("CHECKBOX 1", 10, 70, 120, 20)
$sss1 = GUICtrlCreateRadio ("Radio1_a", 10, 100, 120, 20)
$sss2 = GUICtrlCreateRadio ("Radio2_a", 10, 130, 120, 20)
$Apply = GUICtrlCreateButton("&Применить", 6, 416, 75, 25, 0)
$Exit = GUICtrlCreateButton("&Выход", 230, 416, 75, 25, 0)
$About = GUICtrlCreateButton("&О программе", 312, 416, 91, 25, 0)
$Reset = GUICtrlCreateButton("&Перезапустить Explorer", 88, 416, 134, 25, 0)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE, $Exit
Exit
Case $Apply
MsgBox(0,"","Нажата кнопка ''Применить''")
EndSwitch
WEnd