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?