The "combo box option in Table design" is no more than specifying the
default control type for that field when it is subsequently placed in a form
(it's a design convenience, not data storage). You should still be able to
reference it the same way, with the Column property:
ComboControlName.Column(0) refers to the first column of the current
selection. Column(1) refers to the 2nd column, etc.
"Hidden" columns (i.e., those with widths set to zero) are included in the
column count.
If you are trying to reference the non-bound column outside of a form, I
don't think you can. The field only has one value. The combobox doesn't
really exist in the table, it only exists when you use that field/control on
a form. Yeah, the combo shows up in datasheet view of the table, but it
really isn't part of the table structure itself, just your current view of
the table.