andreitrane
Новичок
- Сообщения
- 141
- Репутация
- 3
почему условие на radio не срабатывает и при нажатии на button выводится самое первое значение radio, не смотря на то, какое выбрано
Код:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form3 = GUICreate("Form3", 117, 117, 418, 309)
$kontaktradio = GUICtrlCreateRadio("kontaktradio", 8, 8, 65, 17)
GUICtrlSetState(-1, $GUI_CHECKED)
$mailradio = GUICtrlCreateRadio("mailradio", 8, 24, 65, 17)
$Button1 = GUICtrlCreateButton("Button1", 8, 48, 65, 25)
$Button2 = GUICtrlCreateButton("Button2", 8, 80, 65, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
global $server
if GUICtrlRead($kontaktradio) = $GUI_CHECKED Then
$server = "109.234.155.196"
elseif GUICtrlRead($mailradio) = $GUI_CHECKED Then
$server = "109.234.156.254"
EndIf
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $button1
msgbox(0, "", $server)
case $button2
msgbox(0, "", $server)
EndSwitch
WEnd