How to change the row position of virtual mode DataGridView?
I am using Windows Forms.
|
How to change the row position of virtual mode DataGridView? I am using Windows Forms.
| |||||
feedback
|
|
Marcus's answer is correct, but you may also need to set the DataGridView's current cell property...
I believe this will scroll the grid. Also, to be absolutely safe, you may want to add this before the other line of code...
This will ensure that if the row you want is already the active row but just scrolled out of view, it will scroll it back into view. | |||
feedback
|
|
You have to clear the old position and set a new one The collection dataGridView1.SelectedRows has the current selected Rows. Depending on the MultiSelect property of the grid you may have to loop through all the rows in the SelectedRows and mark them as unselected. If you are single selection mode, just setting the new row as selected should clear the old selection. To select a particular row (in this case the one at index 0) you just add the line dataGridView1.Rows[0].Selected = true; | |||
feedback
|
|
Private Sub GridSaleItem_SelectionChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles GridSaleItem.SelectionChanged Dim rowcount As Integer rowcount = GridSaleItem.Rows.Count For i As Integer = 1 To rowcount If i = 1 Then
| |||
|
feedback
|
it is really works only try this all others are fake | |||
|
feedback
|
|
You seem to require not only setting the selected row, but also the displayed row. You can access the latter with the
will make sure your newly selected row does not disappear off the screen when scrolling up/down programmatically. | |||
|
feedback
|