Buttons on DBAdvGrid

Is there possible insert a button with a glyph on all the active rows of a selected column of the DBAdvGrid.

I have inserted a button only in a selected row of a column with the code suggested at the developers guide.
Thanks for your help.
Soledad

I'm not sure what you mean with "all active rows"? In a DB grid, there is just one active row?

You can always use the OnGetDisplText() event to create a button via text that has a HTML tag for a button.
Something like:

procedure TForm4.DBAdvGrid1GetDisplText(Sender: TObject; ACol,
  ARow: Integer; var Value: string);
begin
  value := 'Cell  <control TYPE="BUTTON" value="BTN" width="40"><p></p>';
end;

Thanks Bruno.

I mean all the cells of the active row.
I will try with the code that you posted

Sorry I have a mistake.
I mean all the cells of  a column.

Thanks again

Finally I get the solution ading this code 


procedure TFormBuscar.DBAdvGrid1CellsChanged(Sender: TObject; R: TRect);
begin
DBAdvGrid1.CreateBitButton(2,1,42,22,' ',hafull, vafull);
end;

Thanks