and assign the amount of rows in table to that interger like this MaxRows = this.lsappDataSet11.Tables["Clients"].Rows.Count;
so i did that but when i usw this message box MessageBox.Show(MaxRows.ToString());
the results is still 0 since it doesnt count the rows as it should since i have 3 records in the Table and im pretty sure my table name is correct.
Also i was hoping if someone could point me to a better way of doing what i am trying to accomplish that would allow this to better work in a class.