View Single Post
  #1  
Old 05-10-2016, 15:53
gatosky1620's Avatar
gatosky1620 gatosky1620 is offline
Registered User
 
Join Date: Oct 2011
Location: Perú
Posts: 287
Thanks: 13
Thanked 966 Times in 131 Posts
gatosky1620 is on a distinguished road
Finished Label caption don't appear

Why the Finished Label caption don't appear, only appear the "*" symbol

Code:
FinishedLabel:= TLabel.Create(WizardForm);
FinishedLabel.AutoSize:= False;
with WizardForm.FinishedLabel do
FinishedLabel.Top := {#FL2Top};
FinishedLabel.Left := {#FL2Left};
FinishedLabel.Width := {#FL2Width};
FinishedLabel.Height := {#FL2Height};
FinishedLabel.AutoSize := False;
FinishedLabel.WordWrap := True;
FinishedLabel.Font.Name := 'tahoma';
FinishedLabel.Font.Color:= {#FL2Color};
FinishedLabel.ShowAccelChar := False;
FinishedLabel.Caption := WizardForm.FinishedLabel.Caption;
FinishedLabel.Transparent := {#FL2Transparent};
FinishedLabel.Parent := WizardForm.FinishedPage;

WizardForm.WelcomeLabel1.Hide;
WizardForm.WelcomeLabel2.Hide;
WizardForm.FinishedLabel.Hide;
WizardForm.FinishedHeadingLabel.Hide;
Reply With Quote
Sponsored Links