I just starting usng LLBLgen on a new project. I originally did my datagrid testing with the standard visual studtio DataGridView control. I had no problems displaying the required data by dragging the collection component onto the form binding it with the datagridview control and adding/removing the fields as needed.
I execute the following code and the data displayed as expected.
Dim Customers As New ClientFileCollection()
Customers.GetMulti(Nothing)
DataGridView1.DataSource = Customers
When I do the exact same steps using the Component One Grid control, I always get the entire collection regardless of the fact I deleted unwanted colulmns.
Any Ideas how to solve this problem.