Hi, I am working in C# with Visual Studio 2008.
I am trying to create a comboBox for a simple search form in a windows application. What I want to do is have a comboBox with some options from a table in my database so I bound a table to it and selected the columns to display. What I want to do is add a default blank value(to represent any of the options) when the form is first loaded. That way the comboBox would act as a way to refine the search a bit.
Is there any way to do this? I have tried several way (including adding the code by hand) but it throws exceptions because of the data binding.
Is there any property that might allow me to do this?
Thanks!