ich bin zwar nicht der einzigste, der mit dem problem zu kämpfen hat, aber ich habe alles gemacht, was im forum so stand und trotzdem klappt es nicht!
[autoit]#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <ComboConstants.au3>
#include <GUIComboBox.au3>
#include <EditConstants.au3>
$Form1 = GUICreate("Hä?", 568, 501, 397, 362)
$form1Button1 = GUICtrlCreateButton("Ich stimme zu", 360, 456, 97, 33, $WS_GROUP)
$form1Button2 = GUICtrlCreateButton("Ich stimme nicht zu", 120, 456, 97, 33, $WS_GROUP)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $form1Button2
MsgBox(0, "Hinweiß", "Sie sollten zustimmen")
Exit
Case $form1Button1
GUIDelete()
$Form2 = GUICreate("Hä?", 563, 500, 249, 183)
$form3button1 = GUICtrlCreateButton("Hier", 216, 160, 201, 41, $WS_GROUP)
GUISetState(@SW_SHOW)
Case $form3button1
$Form1 = GUICreate("Hä?", 291, 156, 397, 362)
GUISetState(@SW_SHOW)
EndSwitch
WEnd
Ein paar includes könnte man weglassen, aber ich habs mal gelassen.