>Quite sure I am just experiencing an ID-10-T error when trying to figure out
>how to do this.
[quoted text clipped - 6 lines]
>Sounds simple enough, but can not figure out how to do it..and MS Help Files
>are so much help.
Not sure I understand, but there are shortcut keys that
might do what you want.
Alt + DownArrow drops the combo's list and, once that is
done,
DownArrow moves down the list one item at a time.

Signature
Marsh
MVP [MS Access]
Tahlmorrah - 25 Oct 2004 16:03 GMT
Ok they key combination sequence works. Now how do I assign the Alt +
DownArrow to the On Key Down even procedure?
> >Quite sure I am just experiencing an ID-10-T error when trying to figure out
> >how to do this.
[quoted text clipped - 13 lines]
> done,
> DownArrow moves down the list one item at a time.
Marshall Barton - 26 Oct 2004 04:45 GMT
Why? You want to drop the list automatically? If so you
can use the DropDown method.
I think I'm missing something here. If the down arrow key
already does what you want, why bother with the KeyDown
event?

Signature
Marsh
MVP [MS Access]
>Ok they key combination sequence works. Now how do I assign the Alt +
>DownArrow to the On Key Down even procedure?
[quoted text clipped - 16 lines]
>> done,
>> DownArrow moves down the list one item at a time.
Tahlmorrah - 26 Oct 2004 14:33 GMT
The down arrow does not do what I want. By default it select the next field
in the tab order stop. I would prefer on this one field for it to select the
next recordsource from the combo box. I looked up all references for DropDown
and could not find any pertinant information.
> Why? You want to drop the list automatically? If so you
> can use the DropDown method.
[quoted text clipped - 22 lines]
> >> done,
> >> DownArrow moves down the list one item at a time.
Marshall Barton - 26 Oct 2004 16:54 GMT
Just use this in the combo box's Enter event procedure:
Me.combobox.DropDown
so when the user user the down arrow (or Tab, etc) to
navigate to the combo box, it immediately drops down and the
next down arrow moves through its list.

Signature
Marsh
MVP [MS Access]
>The down arrow does not do what I want. By default it select the next field
>in the tab order stop. I would prefer on this one field for it to select the
[quoted text clipped - 28 lines]
>> >> done,
>> >> DownArrow moves down the list one item at a time.
Tahlmorrah - 26 Oct 2004 20:05 GMT
Danke, knew it had to be easy.
> Just use this in the combo box's Enter event procedure:
>
[quoted text clipped - 35 lines]
> >> >> done,
> >> >> DownArrow moves down the list one item at a time.
A.C.Sanchez - 25 Aug 2005 03:15 GMT
What does the Me mean in the expression
Me.combobox.DropDown
I get an error that a Macro can't be found. Do I need to set something else
up first?
> Danke, knew it had to be easy.
>
[quoted text clipped - 37 lines]
> > >> >> done,
> > >> >> DownArrow moves down the list one item at a time.