Does anybody know how can I cause a single cell to redraw itself using the updated data in the underlying GridDataTable?
I've been using Refresh on each update (it's the progress grid again) and it flickers like hell.
Any ideas?
Does anybody know how can I cause a single cell to redraw itself using the updated data in the underlying GridDataTable?
I've been using Refresh on each update (it's the progress grid again) and it flickers like hell.
Any ideas?
Eli Golovinsky wrote:
Does anybody know how can I cause a single cell to redraw
itself using the updated data in the underlying GridDataTable?I've been using Refresh on each update (it's the progress
grid again) and it flickers like hell.Any ideas?
I just call SetCellValue with the new value. This in turn calls the SetValue
method of the GridTableBase, so I set a flag first so that I can detect this
and skip the logic to update the table.
HTH
Frank Millman