Quote:
Originally Posted by buttignol
Friends need a help how to make transparent TasksList
as of the SelectTasksLabel
I'm using this script without success
Code:
var
SelectTasksLabel,TasksList: TLabel;
procedure InitializeWizard();
begin
WizardForm.SelectTasksLabel.Hide;
WizardForm.TasksList.Hide;
SelectTasksLabel:=TLabel.Create(WizardForm);
SelectTasksLabel.Left:=60;
SelectTasksLabel.Top:=15;
SelectTasksLabel.Width:=470;
SelectTasksLabel.Height:=35;
SelectTasksLabel.AutoSize:=False;
SelectTasksLabel.WordWrap:=True;
SelectTasksLabel.Transparent:=True;
SelectTasksLabel.Font.Size := 10;
SelectTasksLabel.Caption:=WizardForm.SelectTasksLabel.Caption;
SelectTasksLabel.Parent:=WizardForm.SelectTasksPage;
TasksList:=TLabel.Create(WizardForm);
TasksList.Left:=60;
TasksList.Top:=70;
TasksList.Width:=400;
TasksList.Height:=252;
TasksList.AutoSize:=False;
TasksList.Font.Size := 10;
TasksList.Parent:= WizardForm.SelectTasksPage;
end;
|
TasksList.Transparent:=True;
but actually, it's not TasksList which makes the Grey Field.
It's a form, just find out what it is.