> Brian Tkatch schreef:
>
[quoted text clipped - 18 lines]
> When do you use the defaultdataview(or for what) and when you use a
> normal dataview?
The default DataView is used by default. For example:
DataGridView.DataSource = DataTable
Is the same thing as:
DataGridView.DataSource = DataTable.DefaultView
If the data needs to be modified, or filtered before it is shown.
another DataView can be created, and the DataSource can be set to that
instead.
As a rule, i would think that unless you know otherwise, just use the
DefaultDataView.
B.