SelectedIndex of ComboBox
Is there a way to make the SelectedIndex of a ComboBox start at 1 rather than 0?Thanks in advance!
> Is there a way to make the SelectedIndex of a> ComboBox start at 1 rather than 0?No. That would be a crime. Counting starts at 0.You will have to increment the indices yourself at each call, or write a wrapper class to adjust them.
Lokoa at 2007-7-14 21:10:15 >
