N
News.Individual.NET
Hi all,
I can detect the active row (iRowIndex: see below please) and do whatever I
want, but I do not seem to be able to set a row to be selected.
How can I do that in vb.Net?
Private Sub DataGridView1_MouseDown(etc.....
Dim btnLeft = Windows.Forms.MouseButtons.Left
If e.Button = btnLeft Then
Dim hit As DataGridView.HitTestInfo = DataGridView1.HitTest(e.X, e.Y)
If hit.Type = DataGridViewHitTestType.Cell Then
clickedCell = DataGridView1.Rows(hit.RowIndex).Cells(hit.ColumnIndex)
iRowIndex = CInt(hit.RowIndex)
etc...
I can detect the active row (iRowIndex: see below please) and do whatever I
want, but I do not seem to be able to set a row to be selected.
How can I do that in vb.Net?
Private Sub DataGridView1_MouseDown(etc.....
Dim btnLeft = Windows.Forms.MouseButtons.Left
If e.Button = btnLeft Then
Dim hit As DataGridView.HitTestInfo = DataGridView1.HitTest(e.X, e.Y)
If hit.Type = DataGridViewHitTestType.Cell Then
clickedCell = DataGridView1.Rows(hit.RowIndex).Cells(hit.ColumnIndex)
iRowIndex = CInt(hit.RowIndex)
etc...