1 (edited by v_pozidis 2023-10-06 14:01:42)

Topic: Color Patern - Solved

How can I call the color Patern and choose a color for my Form by script ??

Re: Color Patern - Solved

var
  tc: TcolorDialog;
begin
  tc := TColorDialog.Create(Form1);
  ... and then open the manual and read...

3 (edited by v_pozidis 2023-10-06 10:31:12)

Re: Color Patern - Solved

Thank you

4 (edited by v_pozidis 2023-10-06 10:33:19)

Re: Color Patern - Solved

I test it but it doesn't work. It does not show the Color Dialog

Post's attachments

Attachment icon color.zip 324.11 kb, 49 downloads since 2023-10-06 

Re: Color Patern - Solved

Any help ??

6 (edited by brian.zaballa 2023-10-06 13:49:39)

Re: Color Patern - Solved

You need to execute it

Post's attachments

Attachment icon color-2.zip 547.03 kb, 56 downloads since 2023-10-06 

brian

7 (edited by v_pozidis 2023-10-06 14:14:24)

Re: Color Patern - Solved

I Just found the solution.
Thank you anyway