also habe ne gui jetzt mit 3 buttons,wenn ich auf einen button raufklicke sollen nochmal 3 buttons kommen und das selbe nochmal wäre dankbar für nen bissl hilfe oder halt etwas wo man nur was eintippen muss (z.b. zahlen und der dann was ausführt)
#include <GUIConstants.au3>
#Region ### START Koda GUI section ### Form=C:\Programme\AutoIt3\Neuer Ordner\Forms\Form1.kxf
$Form1 = GUICreate("Form1", 633, 447, 193, 125)
$Button1 = GUICtrlCreateButton("Button1", 40, 56, 65, 33, 0)
$Button2 = GUICtrlCreateButton("Button2", 40, 96, 65, 33, 0)
$Button3 = GUICtrlCreateButton("Button3", 40, 136, 65, 33, 0)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
msgbox ( 0 , "Box" , "Ich bin Button1" )
Case $Button2
msgbox ( 0 , "Box" , "Ich bin Button2" )
Case $Button3
msgbox ( 0 , "Box" , "Ich bin Button3" )
EndSwitch
WEnd