Wie schreibe ich das , das ich wenn ich in Input1 was schreibe das sich das DIREKT in Label2 übertragen wird
Code:
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form2 = GUICreate("F", 301, 35, 302, 218)
$Input1 = GUICtrlCreateInput("", 8, 8, 121, 21)
GUICtrlSetLimit(-1, 17)
$Label1 = GUICtrlCreateLabel(">", 136, 8, 10, 17)
$Label2 = GUICtrlCreateLabel(" ", 152, 8, 143, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd