Hi,
I have a VB.NET 2005 windows forms app with a heaps of forms most with at least one datagridview on them. I've got most of it working however I'm stuck on one part. The grids are databound to tables in a dataset. When a user updates a new I want to change 2 read only cells on that row to record the userid and time of change. I've tried this in the CellValueChanged event but this causes a stackoverflowexception because, I guess, it then calls itself again and goes into a loop. My question is where do I put the code to update a cell dynamically when a user updates a cell in a row ?? I want to update these cells and then when they click the save button it does an update. The update is working fine, it's just updating the audit cells that is the problem.
thanks
Dave