You can address any column of a combo or list box and get its value with the syntax:
Code:
Me.Comboabc.Column(x)
Where Comboabc is the name of the combo and x is an integer so that the first column is Column(0), the second is Column(1), etc.
You can even consider the combo (or list) as an array and use the syntax:
Code:
Me.Comboabc.Column(x, y)
where x is the column (from 0 to ColumnCount - 1) and y is the line (from 0 to LineCount - 1).