datagridview move cursor to a specified location
Similar question as to that asked yesterday. I now have a need to place my cursor to a specified location. This is what i do, and what is needed.
1. Have a datagrid with a listing for schools and addresses.
2. the datagrid is readonly
3. To make changes to the data grid, I pass using two public variables to a new form where I pass it the school unique parameters.
3. In this new form, I fill my dataset row.
4. Edit my row
5. Update Table Adapter
6. Return to my parent Row to reload my dataset and display modified information
7. Here i need to place my cursor to the record I initially was place when I call my modify routine. At the moment it is place in row.
:)