ConsoleWrite () в элемент GUICtrl

Как я могу поместить ConsoleWrite() в GUICtrlCreateEdit()?

Изображения

#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
$Form1 = GUICreate("Test", 257, 182, 192, 124)
GUISetFont(12, 400, 0, "Times New Roman")
$test = GUICtrlCreateEdit("", 8, 40, 241, 90, $ES_AUTOVSCROLL)
GUISetState(@SW_SHOW)

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
    EndSwitch
WEnd

ConsoleWrite('Text test')

person N.J One    schedule 02.11.2017    source источник


Ответы (1)


Согласно Документация - Справочник по функциям - GUICtrlSetData():

Изменяет данные для элемента управления.

Пример:

#include <EditConstants.au3>
#include <GUIConstantsEx.au3>

$Form1 = GUICreate("Test", 257, 182, 192, 124)
$test = GUICtrlCreateEdit("", 8, 40, 241, 90, $ES_AUTOVSCROLL)
GUISetState(@SW_SHOW)

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            GUICtrlSetData($test, 'Shutting down in 5 seconds ...')
            Sleep(5 * 1000)
            Exit
    EndSwitch
WEnd

Как я могу поместить ConsoleWrite() в GUICtrlCreateEdit()?

Пример:

#include <EditConstants.au3>
#include <GUIConstantsEx.au3>

$Form1 = GUICreate("Test", 257, 182, 192, 124)
$test = GUICtrlCreateEdit("", 8, 40, 241, 90, $ES_AUTOVSCROLL)
GUISetState(@SW_SHOW)

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            ConsoleWriteGUI($test, 'Shutting down in 10 seconds ...' & @CRLF)
            Sleep(5 * 1000)
            ConsoleWriteGUI($test, '5 more seconds ...' & @CRLF)
            Sleep(5 * 1000)
            Exit
    EndSwitch
WEnd

Func ConsoleWriteGUI(Const ByRef $hConsole, Const $sTxt)
    Local Static $sContent = ''

    $sContent &= $sTxt
    GUICtrlSetData($hConsole, $sContent)

EndFunc
person user4157124    schedule 02.11.2017