i tryed to see with a msgbox, what is in the combobox selected. but unfortunately there every time arrives "box1". what shall i change that the other ones come, like item1, item2.... #include <GUIConstants.au3> Global $selected GUICreate("TEST1", 400, 400) GUISetState(@SW_SHOW) Opt('GUIOnEventMode', 1) hotkeyset("{ESC}", "terminate") HotKeySet("{f7}", "GO") hotkeyset("{f8}", "selectiontest") $combo1 = GUICtrlCreateCombo("box1", 50, 50, 200, 100, 3) ; create combo box GUICtrlSe