Just what I was looking for...Thanks!
Main Topics
Browse All TopicsHi,
I have a Windows application built with VS2008 (.NET 3.5 with C#) and there is a DataGridView with sorting, inserting, updating and deleting capabilities.
My problem is when the user sorts on a column and then decides to insert a new row the validation and focus is no longer on the newly inserted row because the data is sorted immediately. How do I either turn off the sorting so the data will display as it was during the newly inserted record and then they can re-sort if the so wish? Or how do I set the focus on the recently entered row?
I tried manipulated the columns via the following code to turn off the sorting in the CellBeginEdit event, but the data is still sorting:
foreach (DataGridViewColumn column in grdCharges.Columns)
{
column.HeaderCell.SortGlyp
}
The data source for the DataGridView is a table from a DataSet.
Thanks for your help
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: ladarlingPosted on 2009-08-31 at 10:56:07ID: 25224835
You can disable sorting on all columns, and then reinstate sorting once the user clicks on any column header:
Select allOpen in new window