I think there prolly is a way to set it, I just dont know the specific code to set it. Or at least resetting the list index to '0' (the first item in the list)
Printable View
I think there prolly is a way to set it, I just dont know the specific code to set it. Or at least resetting the list index to '0' (the first item in the list)
Do you want to re-seed the list's index for each item? Or simply select the first item in the drop down?
To select the first item it's like this:
VB Code:
MyComboBox.SelectedIndex = 0
Tg