M
Mr. X.
Hello.
How can I manually select a row of a dataGridView.
The dataGridView is connected to a bindingSource,
and the row is added by :
Dim dr As DataRow
dr = MyDataTable.NewRow()
Rows(Rows.Count - 1).Selected = True ' is that correct ?
I mean that the new row, should be the current row.
How can I do that?
Thanks
How can I manually select a row of a dataGridView.
The dataGridView is connected to a bindingSource,
and the row is added by :
Dim dr As DataRow
dr = MyDataTable.NewRow()
Rows(Rows.Count - 1).Selected = True ' is that correct ?
I mean that the new row, should be the current row.
How can I do that?
Thanks