Quote:
Originally Posted by Andre Jesus
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;