DataView is not a control. It is a type that is used to perform
filtering on a DataTable without actually changing the data in the data
table. This way, you can separate the data from the presentation of the
data (in this case, presentation meaning a view on the data, where it is
sorted, or filtered).
The DataGridView is a control that allows you to view tabular data, from
a DataTable, or other sources.
It just so happens that the naming is similar.

Signature
- Nicholas Paldino [.NET/C# MVP]
- mvp@spam.guard.caspershouse.com
> What is the real difference between the DataView and the DataGridView?
> Is the DataView even a control or is it merely a class? With methods
[quoted text clipped - 7 lines]
>
> -E
ewingate@gmail.com - 06 Jul 2007 20:17 GMT
Ahh, excellent. Thank you for the answer. That was precisely the
information that I needed.
-E
On Jul 6, 3:09 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.com> wrote:
> DataView is not a control. It is a type that is used to perform
> filtering on a DataTable without actually changing the data in the data
[quoted text clipped - 28 lines]
>
> - Show quoted text -