Can somebody explain to me why the following lines return different number?
where dgv is a datagridview having a dataview as datasource.Code:Console.WriteLine(CType(dgv.DataSource, DataView).Count) Console.WriteLine(CType(dgv.DataSource, DataView).Table.Rows.Count)
thanks




Reply With Quote