You can also drag a BindingSource from the toolbox and do the same steps for the BindingSource. After that you can select the BindingSource as the data source of the grid.
You don't have to use dataset.
1. In the grid properties, drop down "DataSource".
2. Click on "Add Project Data Source...".
3. Select "Object".
4. Find your data object type. You have to make a reference to where it is defined and build before.
5. After you finished the wizard you should see the BindingSource in the bottom of your designer.
Amiram Korach said: I get a binding source in my form
I get a binding source in my form
I use Linq to Sql and UltraGrid a lot. I do just as you said. I add a project data source and I get a binding source in my form. Ofcourse, this won't put the data itself on the grid when you run the app, but this is how any object data source work.
In your form, use the load event to load data and put it in BindingSource.DataSource.