3
Reply

How do I trim a Combobox?

Chris Dude

Chris Dude

Mar 3 2016 10:00 AM
415
Hello all. I have added a combobox that is solution that links to an SQL server using a dataset.

        private void Template_Load(object sender, EventArgs e)
        {
            this.suppliersTableAdapter.Fill(this.spartanDataSet.Suppliers);
        }

My question is, how do I trim the records in the Combobox? I found this absolutely no problem with a complete Datagrid but this seems to be causing me a slight problem.
 
 
Thanks all!

Answers (3)