Hi All!
My app uses databound datagrid control (binds to DataSet containing several
DataTables and DataRelations). The data in DataSet are being updated what
changes some cell values in DataTables (changes are made only to cells with
new values). My problem is that I look for an efficient method to highlit
changes in DataGrid control (preferable by changing BackColor and ForeColor
properties of given cell) to alert user to new vaules.
My attempt to catch TaxetChanged event in DataGridTextBox failed flat -
changes in DataSource do not trigger that event. Monitoring of DataSet and
DataTables obviously is possible, howoever, I would find it to be more
elegant to constraint all the highliting code to DataGrid control.
Any ides?