I have a combo box, that has its datasouce, valuemember, and display members set. I need to allow the user to leave the null. I need the combo box to be null when the form loads, and allow nulls if the user does not wish to select anything. It is for a search criteria form. Does anyone have any suggestions
Thanks

Allow Null In Combo Box
BlackMan890
RGriffin
why not add a listitem with value "" and a space in it.
Listitem i = new ListItem;
i.Value = "";
i.Text = "";
myComboBox.Add(i);
hth,
dophine
hi ,
just give the first value in the items list as an empty string that shud do the job
Frankie Ho
wgillin