Selecting an item in a Combo box

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

Guest

Hi,

I have a combo box where the list items (rowsource) is derived through VBA
code/

Does anyone have any idea on how to select a particular row??
 
Marek said:
I have a combo box where the list items (rowsource) is derived through VBA
code/

Does anyone have any idea on how to select a particular row??


Me.combobox = me.combobox.ItemData(x)

where x is the row less one that you want to select.
 
Back
Top