Frage:
Ich möchte gerne ein Bestimmtes Wert den ich in "GUICtrlCreateEdit"
Eingebe an die tastatur senden z.B "***"
Und wenn ich "GUICtrlCreateButton" $Button1 drücke den soll der Wert
"***" gesendet
Code:
Code:
#include <GUIConstants.au3>
GUICreate("My GUI")
$Button1 = GUICtrlCreateButton( "wert", 225, 75 ,50 ,25, $BS_ICON)
$Button2 = GUICtrlCreateEdit( "", 75, 78 ,60,20, $BS_ICON)
GUISetState (@SW_SHOW)
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
If $msg= $Button1 then ....
Wend






