View Single Post
  #5  
Old 06-09-2012, 07:46
Andre Jesus's Avatar
Andre Jesus Andre Jesus is offline
Registered User
 
Join Date: Jun 2012
Location: Brazil
Posts: 70
Thanks: 11
Thanked 0 Times in 0 Posts
Andre Jesus is on a distinguished road
Quote:
Originally Posted by peterf1999 View Post
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.
Reply With Quote