views:

29

answers:

1

I have some value in variable string var="some text"; i have bind the combobox with list but during loadoing of form i want var to be displayed in editable portion of Combobox... Thanks in advance!!!!

A: 

if var is part of your list then: yourcombobox.SelectedText=var if not: yourcombobox.Text=var

Bolu