Dropdown on ComboBoxes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

I have a form containing 3 Comboboxes, each drawing its contents from the
same table but using different criteria and different sort order.

Is there any way to have all 3 ComboBoxes dropdowned at the same time so I
can see their entries all at the same time and then beeing able to move from
one box to another without losing the dropdown ?

Thanks

Ulrich 1947
 
The DropDown method will only work when the combo box has the focus.

You may be able to fake this by putting a listbox under each combo box and
make the listbox visible/not visible as necessary.
 
Back
Top