I would like to be able to have the user type in a textbox and as they type it will then scroll down to that name in the grid. how do i programmatically scroll to a specific point in the grid? thanks
You will need to loop through the Rows collection to find the row you want. Then you can scroll that row into view using the ActiveRowScrollRegion.ScrollRowIntoView method.