Hi,
in my procedure i move through my dbgrid selection like this:
for z := 0 to frm1.dbg2EA.SelectedRows.Count - 1 do
begin
frm1.dbg2EA.DataSource.DataSet.Bookmark := frm1.dbg2EA.SelectedRows[z];
dosomeworkwiththerecord;
dosomemoreworkwiththerecord;
end;
After i have finished my work for the selected record, i want to color the row before i move to the next one.
So the User can easy see the progress of the work.
Cant be that hard, but can someone help me please?
Sascha