G Guest Aug 15, 2005 #1 How can I programatically change the index of a combobox to, say item 2? TIA.
P Patrick Steele [MVP] Aug 15, 2005 #2 How can I programatically change the index of a combobox to, say item 2? TIA. Click to expand... ComboBox1.SelectedIndex = 1 The list is zero based.
How can I programatically change the index of a combobox to, say item 2? TIA. Click to expand... ComboBox1.SelectedIndex = 1 The list is zero based.
H Herfried K. Wagner [MVP] Aug 15, 2005 #3 Niggy said: How can I programatically change the index of a combobox to, say item 2? Click to expand... Simply set the control's 'SelectedIndex' property to the desired index.
Niggy said: How can I programatically change the index of a combobox to, say item 2? Click to expand... Simply set the control's 'SelectedIndex' property to the desired index.