Selecting an item in a Combo box

M

Marek

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??
 
M

Marshall Barton

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.
 
Top