Meant KeyDown, not KeyPress...
If you set the KeyPreview property of the form to 'Yes' in the Properties
window (or True if you set it in code) you can then do something like this
...
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyDown Then
If Me.ActiveControl.ControlType = acComboBox Then
Me.ActiveControl.Dropdown
End If
End If
End Sub
BTW: Access already provides not one but two shortcuts to drop dow a combo
box - F4 and Alt+Down Arrow.

Signature
Brendan Reynolds
> Meant KeyDown, not KeyPress...
>
[quoted text clipped - 12 lines]
>>
>> Tony
Tony - 26 Oct 2005 22:32 GMT
Hey Brendan,
Thanks for the response. I had no idea there was Form KeyDown event and
that looks promising for other 'global' things I want to accomplish. I was
aware of the other options to drop the box, but I want to make this as
simple as possible; I was instructed to 'design it so that our execs can use
it'. I'm sure you know how it goes...
Thanks & I'll post back to this thread if I have any further questions.
Ciao,
Tony
> If you set the KeyPreview property of the form to 'Yes' in the Properties
> window (or True if you set it in code) you can then do something like this
[quoted text clipped - 29 lines]
>>>
>>> Tony