Ребят, кто нибудь знает как получить значение из этой функции? GUICtrlRead() не хочет работать :(
T Trans Знающий Сообщения 257 Репутация 6 2 Фев 2013 #1 Ребят, кто нибудь знает как получить значение из этой функции? Код: GUICtrlRead() не хочет работать :(
Ребят, кто нибудь знает как получить значение из этой функции? Код: GUICtrlRead() не хочет работать :(
V Viktor1703 AutoIT Гуру Сообщения 1,535 Репутация 413 2 Фев 2013 #2 Код: #include <GUIConstantsEx.au3> $hForm = GUICreate("", 100, 100) $iLabel = GUICtrlCreateLabel('Test', 20, 20, 100, 20) GUISetState() MsgBox(0, '', GUICtrlRead($iLabel)) While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
Код: #include <GUIConstantsEx.au3> $hForm = GUICreate("", 100, 100) $iLabel = GUICtrlCreateLabel('Test', 20, 20, 100, 20) GUISetState() MsgBox(0, '', GUICtrlRead($iLabel)) While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
Zaramot I ♥ AutoIt Сообщения 1,160 Репутация 660 2 Фев 2013 #3 Еще можно так: Код: $Form1 = GUICreate("Form1", 248, 159) $Label1 = GUICtrlCreateLabel("HELLO WORLD !!!", 72, 48, 103, 17) GUISetState() MsgBox(0, '', ControlGetText($Form1, '', $Label1)) While 1 Switch GUIGetMsg() Case -3 Exit EndSwitch WEnd
Еще можно так: Код: $Form1 = GUICreate("Form1", 248, 159) $Label1 = GUICtrlCreateLabel("HELLO WORLD !!!", 72, 48, 103, 17) GUISetState() MsgBox(0, '', ControlGetText($Form1, '', $Label1)) While 1 Switch GUIGetMsg() Case -3 Exit EndSwitch WEnd