Table A has 2 columns:
recID int
recName String
I need to load all recName into combobox B using B.Items.Add(rec Name). This
is no problem.
However, I would like to be able to match ComboxBox B's index with table A's
recID so that I can use B.SelectedIndex to update any table that uses Table
A's recID. Currently, I have to use a clumsy routine to find recID from
B.text
Any help is greatly appreciated.
Thanks
Bill
recID int
recName String
I need to load all recName into combobox B using B.Items.Add(rec Name). This
is no problem.
However, I would like to be able to match ComboxBox B's index with table A's
recID so that I can use B.SelectedIndex to update any table that uses Table
A's recID. Currently, I have to use a clumsy routine to find recID from
B.text
Any help is greatly appreciated.
Thanks
Bill
Comment