View Single Post
  #1  
Old 22-07-2013, 09:38
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
Quote:
Originally Posted by buttignol View Post
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.

Last edited by Razor12911; 22-07-2013 at 09:42.
Reply With Quote
Sponsored Links