spikedsynapse
Technical User
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
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