Предупреждение за нарушение правил форума, пункт 2.7 (http://forum.oszone.net/rules.html#2.7) и пункт 3.19 (http://forum.oszone.net/rules.html#3.19):
2.7: В заголовке темы обязательно обозначайте название предмета, которого касается вопрос, а в теле сообщения максимально подробно опишите проблему (приведите аппаратную/программную конфигурацию, а также изложите ситуацию, в которой возникает проблема)...
Подробнее о принципах создания тем читайте в этом документе (http://forum.oszone.net/faq.php?faq=vb_read_and_post#faq_thread) и Правилах форумов.
3.19: Запрещается... Создавать темы, имеющие неинформативные или состоящие из заглавных букв заголовки (например, "Помогите!", "HELP!", "У меня проблема"). Такие темы будут закрыты или перенесены в Тест-форум. Если вы хотите вернуть перенесенную тему обратно, пока ее не закрыли в Тест-форуме, измените ее заголовок на осмысленный (http://forum.oszone.net/faq.php?faq=vb_board_usage#faq_rename_thread) и напишите об этом в теме.
Переименуйте пожалуйста тему.
LexaSF, а почему что-то должно поменяться от нажатия на кнопку? Самый простой способ убедиться - вывести результат работы этой функции во всплывающем окне. Что-то вроде этого:
MsgBox(0,0, GuiCtrlRead($Button))
Если вы хотите отловить событие "нажатие на кнопку", то "улавливатель" надо ставить в функцию перерисовки окна:
While 1
$msg = GUIGetMsg()
Select
Case $msg = $Button
; здесь ваш код по нажатию кнопки
Case $msg = $GUI_EVENT_CLOSE
ExitLoop
EndSelect
WEnd
#include <GUIConstants.au3> #Region ### START Koda GUI section ### Form=C:\Users\Lexa\AppData\Local\Temp\Rar$EX00.605\Forms\12.kxf $Form1_1 = GUICreate("Settings", 340, 281, 374, 214) GUISetIcon("C:\Users\Lexa\Desktop\heroic_autobots.ico") GUISetFont(8, 800, 0, "Palatino Linotype") GUISetBkColor(0xFFFBF0) $Checkbox1 = GUICtrlCreateCheckbox("Выводить общюю статистику", 8, 56, 289, 25) GUICtrlSetFont(-1, 10, 800, 0, "Palatino Linotype") $Label1 = GUICtrlCreateLabel(" AvToB0T Settings", 0, 0, 339, 25) GUICtrlSetFont(-1, 12, 800, 0, "FreeSetBlackCTT") GUICtrlSetBkColor(-1, 0xA6CAF0) $Label2 = GUICtrlCreateLabel("Кол-во попыток запуска при ошибке соеденения:", 8, 96, 324, 22) GUICtrlSetFont(-1, 10, 800, 0, "Palatino Linotype") $Input1 = GUICtrlCreateInput("Input1", 8, 128, 209, 24) $Label3 = GUICtrlCreateLabel("Количество аккаунтов:", 8, 168, 191, 26) GUICtrlSetFont(-1, 12, 800, 0, "Palatino Linotype") $Input2 = GUICtrlCreateInput("Input2", 8, 200, 209, 24) $Button2 = GUICtrlCreateButton("Сохранить", 8, 240, 97, 25, 0) GUICtrlSetFont(-1, 10, 800, 0, "Palatino Linotype") $Button1 = GUICtrlCreateButton("Выйти", 120, 240, 97, 25, 0) GUICtrlSetFont(-1, 10, 800, 0, "Palatino Linotype") $Label4 = GUICtrlCreateLabel("By ToSTeP", 272, 256, 52, 18) GUICtrlSetFont(-1, 7, 800, 0, "Palatino Linotype") GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch $msg = GUIGetMsg() Select Case $msg = $Button2 MsgBox(0,'','11111button') Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $Button1 MsgBox(0,'','22222button2') Exit EndSelect WEnd #include <GUIConstants.au3>
#Region ### START Koda GUI section ### Form=C:\Users\Lexa\AppData\Local\Temp\Rar$EX00.605\Forms\12.kxf
$Form1_1 = GUICreate("Settings", 340, 281, 374, 214)
GUISetIcon("C:\Users\Lexa\Desktop\heroic_autobots.ico")
GUISetFont(8, 800, 0, "Palatino Linotype")
GUISetBkColor(0xFFFBF0)
$Checkbox1 = GUICtrlCreateCheckbox("Выводить общюю статистику", 8, 56, 289, 25)
GUICtrlSetFont(-1, 10, 800, 0, "Palatino Linotype")
$Label1 = GUICtrlCreateLabel(" AvToB0T Settings", 0, 0, 339, 25)
GUICtrlSetFont(-1, 12, 800, 0, "FreeSetBlackCTT")
GUICtrlSetBkColor(-1, 0xA6CAF0)
$Label2 = GUICtrlCreateLabel("Кол-во попыток запуска при ошибке соеденения:", 8, 96, 324, 22)
GUICtrlSetFont(-1, 10, 800, 0, "Palatino Linotype")
$Input1 = GUICtrlCreateInput("Input1", 8, 128, 209, 24)
$Label3 = GUICtrlCreateLabel("Количество аккаунтов:", 8, 168, 191, 26)
GUICtrlSetFont(-1, 12, 800, 0, "Palatino Linotype")
$Input2 = GUICtrlCreateInput("Input2", 8, 200, 209, 24)
$Button2 = GUICtrlCreateButton("Сохранить", 8, 240, 97, 25, 0)
GUICtrlSetFont(-1, 10, 800, 0, "Palatino Linotype")
$Button1 = GUICtrlCreateButton("Выйти", 120, 240, 97, 25, 0)
GUICtrlSetFont(-1, 10, 800, 0, "Palatino Linotype")
$Label4 = GUICtrlCreateLabel("By ToSTeP", 272, 256, 52, 18)
GUICtrlSetFont(-1, 7, 800, 0, "Palatino Linotype")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
$msg = GUIGetMsg()
Select
Case $msg = $Button2
MsgBox(0,'','11111button')
Case $msg = $GUI_EVENT_CLOSE
ExitLoop
Case $msg = $Button1
MsgBox(0,'','22222button2')
Exit
EndSelect
WEnd
madmasles
18-12-2010, 18:45
LexaSF,
;...
While (http://www.autoitscript.com/autoit3/docs/keywords.htm#While) 1
$nMsg = GUIGetMsg (http://www.autoitscript.com/autoit3/docs/functions/GUIGetMsg.htm)()
Switch (http://www.autoitscript.com/autoit3/docs/keywords.htm#Switch) $nMsg
Case (http://www.autoitscript.com/autoit3/docs/keywords.htm#Case) $GUI_EVENT_CLOSE
Exit (http://www.autoitscript.com/autoit3/docs/keywords.htm#Exit)
Case (http://www.autoitscript.com/autoit3/docs/keywords.htm#Case) $Button1
MsgBox (http://www.autoitscript.com/autoit3/docs/functions/MsgBox.htm)(0, '', '11111button')
Case (http://www.autoitscript.com/autoit3/docs/keywords.htm#Case) $Button2
MsgBox (http://www.autoitscript.com/autoit3/docs/functions/MsgBox.htm)(0, '', '22222button2')
Exit (http://www.autoitscript.com/autoit3/docs/keywords.htm#Exit)
EndSwitch (http://www.autoitscript.com/autoit3/docs/keywords.htm#EndSwitch)
WEnd (http://www.autoitscript.com/autoit3/docs/keywords.htm#WEnd)
vBulletin v3.6.4, Copyright ©2000-2025, Jelsoft Enterprises Ltd.