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!!!!
views:
29answers:
1
A:
if var
is part of your list then: yourcombobox.SelectedText=var
if not: yourcombobox.Text=var
Bolu
2010-10-11 11:44:09