View Single Post
  #4  
Old 05-09-2012, 23:32
peterf1999's Avatar
peterf1999 peterf1999 is offline
Die Hard Member
 
Join Date: Nov 2008
Location: Italy
Posts: 928
Thanks: 14
Thanked 983 Times in 236 Posts
peterf1999 is on a distinguished road
Quote:
Originally Posted by Andre Jesus View Post
Hello dears, i hope you are very well.

How can i hide the bar of the buttons close/minimize windows in my installer on Inno Setup?

Thanks in advance.
Code:
procedure InitializeWizard();
Begin
  With WizardForm Do Begin
  BorderIcons := [biHelp];
  End;
End;
Code:
procedure InitializeWizard();
Begin
  With WizardForm Do Begin
  BorderStyle:=bsnone;
  End;
End;
Reply With Quote
The Following User Says Thank You to peterf1999 For This Useful Post:
MMR (14-06-2013)