Topic: Change TextBox Color to clBtnFace

Hello,

Is it possible to make a TextBox with the background color of the form? (clBtnFace)

thanks.

Re: Change TextBox Color to clBtnFace

Hello,


You can do it using script:


procedure Form1_OnShow (Sender: string; Action: string);
begin
    Form1.Edit1.Color := clBtnFace;
end;
Dmitry.

Re: Change TextBox Color to clBtnFace

thanks smile