How can I get the selected item number from a combo box?

  • Thread starter Thread starter mezzanine1974
  • Start date Start date
M

mezzanine1974

How can I get the selected item number from a combo box. Say that
combo has only two items: (Madam;Mister).
If "Madam" is selected, I would like to get item number of Madam < it
is zero in this example.
Thank you
 
You refer to the value via the name of the control. If it is multi-column,
you append .column(number) to the name where number is 0 for the first column.

-Dorian
 
Back
Top