Combo box

  • Thread starter Thread starter h3llz
  • Start date Start date
H

h3llz

Ive got a combo box which got two columns, staffID and staff name, the first
column is 0cm and second is 2cm, how can i get the first column value via vb?
 
Ive got a combo box which got two columns, staffID and staff name, the
first column is 0cm and second is 2cm, how can i get the first column
value via vb?

The bound column (regardless of its position or column width) is simply...

Me.ComboBoxName

Any column besides the bound column is...

Me.ComboBoxName.Column(0)
Me.ComboBoxName.Column(1)
etc..
 
thanks

Rick Brandt said:
The bound column (regardless of its position or column width) is simply...

Me.ComboBoxName

Any column besides the bound column is...

Me.ComboBoxName.Column(0)
Me.ComboBoxName.Column(1)
etc..
 
Back
Top