i want to set the index of the row so that i scroll to that Record.
A Datagrid uses CurrentRowIndex property like this
DataGrid1.CurrentRowIndex = i
but what could be the replacement in .NET 2.0.
Any Idea Will Be Appreciated.
Printable View
i want to set the index of the row so that i scroll to that Record.
A Datagrid uses CurrentRowIndex property like this
DataGrid1.CurrentRowIndex = i
but what could be the replacement in .NET 2.0.
Any Idea Will Be Appreciated.
****bump
CurrentRowIndex still exists in the 2.0 framework.
I havent seen it Mendhak.
I got it work.
Me.dgvDBFData(0, Me.dgvDBFData.CurrentRow.Index).Value = i
Although it gets my row index value, it sets the column of that particular row to the index value....this is not what i need.
Any other idea?