I have a grid with 100's of rows and when i want to preselect a row I am setting the ActiveRow property and setting the Row selected property to True (see below) but I want the selected row to be visible on the screen and it appears to scroll close to it but the selected row is one row below the visible display. How can I move that selected row to the middle or top or just visible to the grid.
ugReleases.ActiveRow = rowueryStringSelectedrowQueryStringSelected.Selected = True
Thanks
Scott
ultraGrid1.ActiveRowScrollRegion.ScrollRowIntoView(ultraGrid1.ActiveRow);
Unfortuantely, this did not seem to change anything (and I did change the name of ultraGrid1 to the name of my grid) and the ActiveRow is being set before I called this. Any other ideas?