GUICreate("Combo-Tut", 200, 80) $map = GUICtrlCreateCombo("", 0, 5) GUICtrlSetData($map, "|Test 1|Test 2|Test 3") $Button = GUICtrlCreateButton("Button", 100, 40, 75, 22) GUISetState() While True $nMsg = GUIGetMsg() Switch $nMsg Case -3 ;i $GUI_EVENT_CLOSE ExitLoop Case $Button ;i Example 1 MsgBox(0, "1. Example", GUICtrlRead($map)) ;i Example 2 $var = GUICtrlRead($map) Switch $var Case "Test 1" $Msg = "Das Erste" Case "Test 2" $Msg = "Das Zweite" Case "Test 3" $Msg = "Das Dritte" Case Else $Msg = "Eine Eingabe ist erforderlich !" EndSwitch MsgBox(0, "2. Example", $Msg) EndSwitch WEnd ; Ende