Что нового

[Элементы GUI] получить данные из GUICtrlCreateLabel

Trans

Знающий
Сообщения
257
Репутация
6
Ребят, кто нибудь знает как получить значение из этой функции?
Код:
GUICtrlRead()

не хочет работать :(
 

Viktor1703

AutoIT Гуру
Сообщения
1,535
Репутация
413
Код:
#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
Еще можно так:
Код:
$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
 
Верх