What is a combobox that cannot be typed in

  • Thread starter Thread starter DF.thangld
  • Start date Start date
D

DF.thangld

Hey, anybody know about a combobox that cannot be typed in but can be
changed SelectedIndex? I mean, user can choose the item, but cannot type in
the combobox itself? I don't remember its name. And can you give me some
sample about how to use it. Thanks a lot!
 
DF.thangld said:
Hey, anybody know about a combobox that cannot be typed in but can be
changed SelectedIndex? I mean, user can choose the item, but cannot
type in the combobox itself? I don't remember its name. And can you
give me some sample about how to use it. Thanks a lot!

There is no such animal in Access.

You can use a ListBox (which providesno place to type), but that does not
drop down like a ComboBox.

You can set up a ComboBox so that the user must type an entry that matches
one that is in the list, but you cannot disallow typing completely.
 
Back
Top