accessing items in a combobox

  • Thread starter Thread starter sherif
  • Start date Start date
S

sherif

when i access the items in a combobox by using the value
member property i find that the retreived values aren't
correct so could you tell me how to access them right.
 
use either SelectedItem or SelectedIndex to get the currently selected item.
the member Items[] gets you the collection of all items that are in the
combobox.
 
Back
Top