i looped through the recordset and loaded two columns to each row. I am having trouble understanding how to manipulate data in a row. In other words if I click on the selected item(combo box) and want to extract just the column, how do I find the row value so I can reference it in an assign statement.
i = 0
Do Until oRS.EOF
combo2(2).AddItem i
combo2(2).Column(0, i) = oRS!Description
combo2(2).Column(1, i) = oRS!Response_value
i = i + 1
oRS.MoveNext
loop