I have some serious problem with DataGridView input validation. And a lot of times I prefer to take data from users through TextBox and only show them in DataGridView.
TextBox is easy to validate and its easy to generate user friendly messages if user input wrong values into it.
I work on a project with Entity FrameWork and I bound a DataGridView to a database.
If user make a decision to insert a data in a none null-able column and after that he make a decision to leave that column blank, when he try to click on other DataGridView cells an exception happens and you get run-time error.
Or if user try to insert a string value in an integer column he get a very long error message which is not user friendly at all.
Is it any easy way to validate DataGridView cells? If you have to use nested loops to validate DataGridView I prefer to use old fashioned way with textboxes.