Open drop down on focus

Q

quartz

I am using Office 2003 on Windows XP.

I would like to know how to have a combobox - the drop down portion - open
when the control receives focus.

Is this possible, if so can someone please post example VBA to do this?

Thanks much in advance.
 
M

Mikal via AccessMonster.com

quartz said:
I am using Office 2003 on Windows XP.

I would like to know how to have a combobox - the drop down portion - open
when the control receives focus.

In the combo box's On Got Focus property put the following code:

Me!yourComboBoxName.dropdown

I think that will do the job.

Mike
 
Top