I am working with a DataGridView which is giving me a lot of headache
.
The end use needs to modify data in 2 consecutives columns of this DataGridView, and I am having the following issues:
1- When press Enter key, I want the cursor to move to the 2nd column (like when pressing the Tab key), but instead it is going to the next row.
2 - Still I am having problem with the BBS not synchronizing with the BBS BO, for now I had to add code to the DataGridView.RowEnter to handle this, but when I edit a cell, the value is not reflected in the BO.Field assigned to that cell, so in my validation code I have to assign the value of the cell to the BO.Field. Is this the way the DataGridView suppose to work?
I really appreciate some inside on this one since I am waisting a lot of time trying to make this DataGridView work. Unfortunately in this case I can not use a ListView because it would be very difficult to the end user to handle the data for the 2 columns that needs to be editable.
Edhy Rijo