View ComboBox List

  • Thread starter Thread starter Tim Crowley via AccessMonster.com
  • Start date Start date
T

Tim Crowley via AccessMonster.com

Is there a way, I'm quite sure there must be, to have the ComboBox show the
list and the progression of it's contents as the user types their input. I
have "auto expand = Yes" set. It would be like you pressed the down arrow
and then started typing. I know this is probably a no brainer but I have
other problems to resolve and can't find an answer in the archives.

Thanks
 
try adding the following line of code to the combobox control's GotFocus
event procedure, as

Me!MyComboName.Dropdown

substitute the correct name of the combo box control, of course.

hth
 
Back
Top