I have a gridview which is connected to a TAdoQuery.
I would like to change the values of a column for all the rows that I have filtered out. Something like "check all" so it changes all the values for a column called "active" to True.
How would I do this?
Let's say I have something like
qry.filter := some filters here;
qry.filtered := true;
How can I change the values in the column "active" for all the filtered results like:
for 0 to qry.count -1 do
qry.filtered.column(active) := True;