|
Home > Archive > MS Access database support > February 2006 > Possible to open list box when clicking on text (beside arrow)?
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Possible to open list box when clicking on text (beside arrow)?
|
|
| AA Arens 2006-02-19, 3:24 am |
| Is it possible to have the drop down list (list box) opened, not only
when I click on the arrow, but also when I click on the field text.
Bart
Access 2003
| |
| Br@dley 2006-02-19, 3:24 am |
| AA Arens wrote:
> Is it possible to have the drop down list (list box) opened, not only
> when I click on the arrow, but also when I click on the field text.
>
> Bart
> Access 2003
Call this code on the OnClick or OnFocus event of the text box....
Me.myCombobox.Dropdown
--
regards,
Br@dley
| |
| Jeff Smith 2006-02-19, 3:24 am |
|
"AA Arens" <bartvandongen@gmail.com> wrote in message
news:1140321553.134758.80120@z14g2000cwz.googlegroups.com...
> Is it possible to have the drop down list (list box) opened, not only
> when I click on the arrow, but also when I click on the field text.
>
> Bart
> Access 2003
>
A drop down list is called a combo box, not a list box.
Try Me!ComboBoxName.DropDown
Place this code inside the On Enter Event for the combo box
Jeff
|
|
|
|
|