Hallo Leute,
ich will das wenn ich in dem ersten input ENTER drücke, dass kommt (MsgBox) "Input 1 wurde geentert" und wenn ich in Input 2 ENTER drücke das kommt (MsgBox) "Input 2 wurde geentert". Wie mache ich das?
[autoit]#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("2 Inputs", 170, 58, 192, 124)
$Input1 = GUICtrlCreateInput("Input1", 24, 8, 121, 21)
$Input2 = GUICtrlCreateInput("Input2", 24, 32, 121, 21)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd