Thankyou for your reply. That makes things clearer then. Create my
dataset and use in datagridview. Am I write that, to save contents of
datagridview, you have to have a dataset?.
Regards Robert
Robert,
No, you don't have to have a dataset. You can bind a DataGridView to
anything that implements IList. The DataGridView will use the classes in
the System.ComponentModel namespace to get the information about the types
exposed through the IList implementation.
However, for the most part though, if your data needs aren't too
complex, and you don't have a specific need for this kind of typing (for the
individual rows in the data grid view), then the data set is just fine.

Signature
- Nicholas Paldino [.NET/C# MVP]
- mvp@spam.guard.caspershouse.com
> Thankyou for your reply. That makes things clearer then. Create my
> dataset and use in datagridview. Am I write that, to save contents of
> datagridview, you have to have a dataset?.
> Regards Robert
RobcPettit@yahoo.co.uk - 18 Jan 2008 23:55 GMT
Thanks for making that clear. Working with dataset was easier than I
thought, so Ill stick with it. Thanks for your time.
Regards Robert