How to force combo to open automaticily upon entering data

  • Thread starter Thread starter ljubo lecic via AccessMonster.com
  • Start date Start date
L

ljubo lecic via AccessMonster.com

I am new in ACCESS and need an opinion!
I have an ACCESS aplication using combo boxes.
Now I am required to make combos to behave in a way
that it opens its window upon entering data.Is there a way to do it.(Will I
have to create drop down boxes or
I can make combos to do it)
 
ljubo said:
I am new in ACCESS and need an opinion!
I have an ACCESS aplication using combo boxes.
Now I am required to make combos to behave in a way
that it opens its window upon entering data.Is there a way to do
it.(Will I have to create drop down boxes or
I can make combos to do it)

In the GotFocus event...

Me.ComboBoxName.Dropdown
 
Not sure if I understand what you need, but I think you want the combobox to
"drop down" when you enter it.
Use the OnEnter event with this code...
YourComboBoxName.Dropdown
hth
Al Camp
 
Thank you Rick and Al!
I must ask because I have no time to read!
 
Back
Top