Hello:
I have loaded my comboBox and it looks good.
BUT... I would like the first value to show in the box. I guess I have to load the comboBox.Text to the first value. How do I do that?
comboBoxProfile_ID.Text = comboBoxProfile_ID.Items.____;
Loading
Raaj KumarPosted Feb 25, 2010, 9:07 PM
You can do this by setting comboBoxProfile_ID.SelectedIndes=0 after assigning the items to datasource or after adding the items to the combobox
Regards,
raaj
GustavoPosted Feb 25, 2010, 9:18 PM
YES... Thank you. It worked.
comboBoxProfile_ID.SelectedIndex = 0;