View Full Version : Hide bar of the buttons close/minimize windows?
Andre Jesus
05-09-2012, 13:11
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? :confused:
Thanks in advance.:)
pakrat2k2
05-09-2012, 19:13
check windowsresizable ? in inno help
Andre Jesus
05-09-2012, 23:24
check windowsresizable ? in inno help
Yes, i cheched this options but i want just hide the bar like this example below:
I want this.
3868
I donīt want this.
3869
Have a command scrpt or only with .dll?
peterf1999
05-09-2012, 23:32
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? :confused:
Thanks in advance.:)
procedure InitializeWizard();
Begin
With WizardForm Do Begin
BorderIcons := [biHelp];
End;
End;
procedure InitializeWizard();
Begin
With WizardForm Do Begin
BorderStyle:=bsnone;
End;
End;
Andre Jesus
06-09-2012, 07:46
procedure InitializeWizard();
Begin
With WizardForm Do Begin
BorderIcons := [biHelp];
End;
End;
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...:eek:
3871
But i insert a code that control the size, so i insert the same size of image of the my installar and was good.:D
3872
This is the code tha i said:
Begin
With WizardForm Do Begin
BorderStyle:=bsnone
Width:=600
Height:=400
end;
End;
Thank you very much.:)
Smurf Stomper
06-09-2012, 20:12
Peter, if you're still in a charitable mood, would you also share the part of your script for creating a slideshow during the install process & having a png (some parts transparent) splash? It would be great if I could just add that to my existing scripts.
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.