Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I currently have a DataGridView which depending on certain row states (which I have defined as "new", "modified", "to be removed" & "normal") I Style rows within my grid with code like this:

'Modified
 row.DefaultCellStyle.Font = New Font(row.DataGridView.Font, FontStyle.Regular)
 row.DefaultCellStyle.BackColor = Color.LemonChiffon
 row.DefaultCellStyle.ForeColor = Color.Empty

I hook on to various events to accomplish this - and they fire when I expect them.

My issue is that I am using My DataGridView in the EditMode of EditOnEnter. I'm running into an issue that whichever cell is selected (& therefor in edit mode) is not being updated immediately by my Style change code. That is until I leave the selected cell for another one.

Here is a couple screen-shots which show's the life-cycle of this issue:

Before editing anything

Before Editing

After modifying a cell

alt text

After tabbing to another cell

alt text

My Desired result would be transitioning from the first image - directly to the last image (Without having to "tab" out of the cell I'm editing.) Is there something I can do to accomplish this?

Thanks.

P.S. I'm normally code in C# so I can accept the answer in either language (this project just so happens to be in vb.net v2.0)

share|improve this question
have you tried CellBeginEdit event? – Bolu Jan 12 '11 at 13:33
@Bolu Currently I use CurrentCellDirtyStateChanged as I want to mark the row as "modified" as soon as it is modified. CellBeginEdit Oddly appears to fire only when I leave the cell. – Mike Jan 13 '11 at 11:51

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.