|
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 ..
|