How do i make this combo read only? the user wont be able to change the data, vut to select one of the three #Include <GUIConstants.au3> GUICreate("GUI",200,200) GUICtrlCreateCombo("",40,40,90,20) GUICtrlSetdata(-1,"Minimize|Normal|Maximize","Normal") GUISetstate() While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then Exit WEnd