DataGrid ParentRow
Visual Basic
3
Posts
2
Posters
0
Views
1
Watching
-
Hi! I'm trying to select an entire row of a datagrid with the index number of the row. When I use the .select method of the datagrid, it only selects the row and the ParentRow selector(the little arrow on the left of the row) does not move to the row. Is there any way to make this work? thanks! Hugo
-
Hi! I'm trying to select an entire row of a datagrid with the index number of the row. When I use the .select method of the datagrid, it only selects the row and the ParentRow selector(the little arrow on the left of the row) does not move to the row. Is there any way to make this work? thanks! Hugo
Try this
datagrid.CurrentRowIndex = someIndex
That works for me. Kevin -
Try this
datagrid.CurrentRowIndex = someIndex
That works for me. Kevin