View Single Post
  #32  
Old 28-02-2016, 09:20
Pulcione86 Pulcione86 is offline
Registered User
 
Join Date: Feb 2013
Location: Italy
Posts: 65
Thanks: 12
Thanked 6 Times in 6 Posts
Pulcione86 is on a distinguished road
Probabilmente non mi ricordavo di aver toccato questa parte dello script:

//
with TLabel.Create(WizardForm) do begin
Parent:=WizardForm;
Left:=0;
Top:=0;
Width:=WizardForm.CLientWidth;
//Height:=WizardForm.ClientHeight;
Height:=-0;
OnMouseDown:=@FrameMouseDown;
Cursor:=crCross;
end;
end;

Era impostato su "Height:=40, l'ho rimesso a 0 e si è risolto..

---------------------------------------------------------------

I probably did not remember to have touched this part of the script :

//
with TLabel.Create ( WizardForm ) do begin
Parent: = WizardForm ;
Left : = 0 ;
Top : = 0 ;
Width: = WizardForm.CLientWidth ;
//Height:=WizardForm.ClientHeight ;
Height : = - 0 ;
OnMouseDown : = @ FrameMouseDown ;
Cursor: = crCross ;
end ;
end ;

It was set to "Height : = 40 , I put it back to 0 and was resolved ..
Reply With Quote