Servous,
hab noch ein Problem, und zwar:
Ich kann ich abfragen welche Checkboxen gedrückt/geklickt sind und die dann im der Edit ausgeben?
Sprich das dann wenn die erste und dritte Checkbox geklickt wurde in der Edit steht: ""Es ist Checkbox 1" und "Es ist Checkbox 3""
Spoiler anzeigen
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("Form1", 355, 345, 192, 124)
$Checkbox1 = GUICtrlCreateCheckbox("Hier steht was 1", 16, 16, 97, 17)
$Checkbox2 = GUICtrlCreateCheckbox("Hier steht was 2", 128, 16, 97, 17)
$Checkbox3 = GUICtrlCreateCheckbox("Hier steht was 3", 240, 16, 97, 17)
$Edit1 = GUICtrlCreateEdit("", 16, 40, 321, 257)
$Button1 = GUICtrlCreateButton("Button1", 88, 312, 171, 25, $WS_GROUP)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd