pete m Posted November 29, 2005 Posted November 29, 2005 Hi All I can't make combo boxes work on my system - w2k pro w/all updates & ai3.1.1 or ai3.1.1.91 I've tried many diff variations, e.g.: #include <GUIConstants.au3> ;Generated with Form Designer preview $Form1 = GUICreate("AForm1", 272, 358, 192, 125) $Button1 = GUICtrlCreateButton("AButton1", 32, 24, 75, 25) $Combo1 = GUICtrlCreateCombo("", 32, 80, 145, 21) GUICtrlSetData(-1, "zero|one|two|three","one") GUISetState(@SW_SHOW) While 1 $msg = GuiGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case Else ;;;;;;; EndSelect WEnd Exit shows the button, the combo box with "one" in it. when I click on the pull down, nothing pulls down. the "one" highlights, and a thin line appears under the box as though only a pixel high box is pulling down. Any one have ideas?
GaryFrost Posted November 29, 2005 Posted November 29, 2005 set the combobox height to 100 or more SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
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