Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

combobox problem

Status
Not open for further replies.

spikedsynapse

Technical User
Dec 5, 2001
4
US
I havent coded for a long while. I am currently teaching myself aspect.

I am attempting to use a dropdown list with the combo box, but when I execute the script the dropdown list appears as a 2-3 pixel wide bar with no information within it. Needless to say selecting from the list is very hard ;)

Has anyone had this problem or know how to fix it?

Here is the code for my dialog box.

proc DialogBox1
;string title = "connection"
string UserNMLst
UserNMLst = "User1, User2, User3, User5, User6"
dialogbox 1 26 100 130 68 158 "Connection" Call CheckIt
combobox 1 10 12 114 12 DROPDOWNLIST UserNMLst UserNM SORT
editbox 2 10 36 114 12 SystemVar
text 8 10 2 75 9 "UserName" left
text 9 10 26 75 9 "System Name in Book" left
pushbutton 5 72 52 50 14 "OK" OK
pushbutton 6 12 52 50 14 "Cancel" Default
enddialog
endproc
 
Fixed it. On combo boxes the size of the box is standard, but the height paramater affects the size of the drop menu.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top