I have a datagrid view in my C# app and I want to know how to use a BindingSource (Toolbox -> Data -> Binding Source) to use the controls to filter/sort/etc the data.
Here is the current code:
[code]
adpt.Fill(ds);
dgvCompanies.DataSource = ds.Tables[0];
[/conn]
Any help is appreciated. Cheers