dynamically select ComboBox Entry

  • Thread starter Thread starter Stefan Richter
  • Start date Start date
S

Stefan Richter

How can I dynamically select a ComboBox Entry?

Could you please provide some sample code?

Thanks in advance!!!

Stefan
 
What do you mean by dynamically? Do you need to select an item based on
input in other controls? Are you talking Windows Forms or Web Forms? Are the
controls bound to a data source?
 
* "Stefan Richter said:
How can I dynamically select a ComboBox Entry?

Could you please provide some sample code?

\\\
Me.ComboBox1.SelectedIndex = 5
Me.ComboBox2.SelectedItem = p
///
 
Back
Top