how to change apperance of most recently updated cell value as in microsoft access.
if you update a particular cell value its apperance should change to keep track that which cell value you have just changed
There's nothing built-in to the grid to do this. What I would do is add an unbound hidden column that contains some information about cells that are recently changed. When a user updates a cell, I could use AfterCellUpdate to update this unbound column. Then I could use the InitializeRowevent of the grid to color the cell based on the information in the hidden column.