Nov 8, 2005 #1 ddiamond Programmer Apr 22, 2005 918 US How do I set the current row on a datagrid to the last row of the datagrid?
Nov 8, 2005 #2 Coolstep Programmer Dec 7, 2004 50 EG ddiamond, As far as I know: Code: dataGrid1.VisibleRowCount I wish it helps Upvote 0 Downvote
Nov 10, 2005 Thread starter #3 ddiamond Programmer Apr 22, 2005 918 US This is what I ended up doing: Code: int LastRow = Dataset1.Tables["POOL_NUMBERS"].Rows.Count; DataGrid1.CurrentCell = new DataGridCell(LastRow,1); Upvote 0 Downvote
This is what I ended up doing: Code: int LastRow = Dataset1.Tables["POOL_NUMBERS"].Rows.Count; DataGrid1.CurrentCell = new DataGridCell(LastRow,1);