i have a datagridview that's binded to a dataser that's bounded to a datatable
GridDatos
dg = new GridDatos();
DataGridView grid = dg.ConvertirDGV(ds, "TableName");
there are 3 columns: Name, Times Voted and Location
i already ordered the datagridview so i can have the person that voted the most in first place
grid.Sort(grid.Columns[
"Versiones"], System.ComponentModel.ListSortDirection.Descending);
now i want it to show only the first 10 persons that voted more
i tryed with rowcount but since it is binded to a dataset it throws an exception
any kind of help will be much appreciated..
oh and... im sorry for my horrible english 