Quote:
Originally Posted by Bilawal
with WizardForm.WelcomeLabel1 do
begin
Transparent := True;
Left := ScaleX(24);
Top := ScaleY(66);
Width := ScaleX(492);
end;
Their font colour donot change
|
try this
with WizardForm.WelcomeLabel1 do
begin
Transparent := True;
Left := ScaleX(24);
Top := ScaleY(66);
Width := ScaleX(492);
Font.Color := clred
end;