Topic: color in the footer tablegrid

Hi, I do not work

Form1.TableGrid1.Columns[0].Footer.Color := clGreen;

There is another way to implement color in the footer of tablegrid?

Thank

Re: color in the footer tablegrid

Hello,


You must use this code in event OnChange of TableGrid, example:

procedure Form1_TableGrid1_OnChange (Sender: string);
begin
    Form1.TableGrid1.Columns[0].Footer.Color := clGreen;
end;


Perhaps you have old version, please download latest version here:
http://myvisualdatabase.com/download/myvisualdb.exe


If this does not solve the problem, please send me your project to support@drive-software.com
I'll try to help you.

Dmitry.

Re: color in the footer tablegrid

I needed to put in OnChange event
now works fine
Thank