joeloyzaga Posted March 21, 2009 Posted March 21, 2009 for this code and just use run scite I get Error:variable - used without being declared when using CBS_DROPDOWNLIST #include <GUIConstants.au3> GUICreate("", 300, 300) GUICtrlCreateCombo("", 10, 10, 280, 100, $CBS_DROPDOWNLIST) GUICtrlSetData(-1, "Avxvxc|bzdhkasd|cashdaskjsa|ddskalsja") GUISetState() Do Until GUIGetMsg() = $GUI_EVENT_CLOSE
Valuater Posted March 21, 2009 Posted March 21, 2009 Maybe... #include <GUIConstants.au3> #include <ComboConstants.au3> GUICreate("", 300, 300) GUICtrlCreateCombo("", 10, 10, 280, 100, $CBS_DROPDOWNLIST) GUICtrlSetData(-1, "Avxvxc|bzdhkasd|cashdaskjsa|ddskalsja") GUISetState() Do Sleep(20) ; VERY IMPORTANT Until GUIGetMsg() = $GUI_EVENT_CLOSE 8)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now