Moin zusammen
Ich würde gerne, wenn in Input1 ein Minuszeichen vorhanden ist, das dann in Input 2 die Hintergrundfarbe "rot" ist.
Spoiler anzeigen
C
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 380, 75, 300, 600)
$Input1 = GUICtrlCreateInput("Input1", 5, 5, 370, 30)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")
GUICtrlSetCursor (-1, 2)
$Input2 = GUICtrlCreateInput("Input2", 5, 40, 370, 30)
GUICtrlSetFont(-1, 12, 400, 0, "MS Sans Serif")
GUICtrlSetCursor (-1, 4)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Input2
EndSwitch
WEnd
Alles anzeigen
LG Lina.