Quote:
Originally Posted by peterf1999
Code:
procedure InitializeWizard();
Begin
With WizardForm Do Begin
BorderIcons := [biHelp];
End;
End;
Code:
procedure InitializeWizard();
Begin
With WizardForm Do Begin
BorderStyle:=bsnone;
End;
End;
|
Hello peterf1999.
This is exactly that i want.
When i put this code on my script, appear a part below...
Installer without the Configuration Width and Heigth.jpg
But i insert a code that control the size, so i insert the same size of image of the my installar and was good.
Installer with the Configuration Width and Heigth.jpg
This is the code tha i said:
Begin
With WizardForm Do Begin
BorderStyle:=bsnone
Width:=600
Height:=400
end;
End;
Thank you very much.