|
|
|
#1
|
||||
|
||||
|
Hide bar of the buttons close/minimize windows?
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.
|
| Sponsored Links |
|
#2
|
||||
|
||||
|
check windowsresizable ? in inno help
|
|
#3
|
||||
|
||||
|
Yes, i cheched this options but i want just hide the bar like this example below:
I want this. Installer without bar close windows.jpg I donīt want this. Installer with bar close windows.jpg Have a command scrpt or only with .dll? Last edited by Andre Jesus; 05-09-2012 at 23:30. |
|
#4
|
||||
|
||||
|
Quote:
Code:
procedure InitializeWizard(); Begin With WizardForm Do Begin BorderIcons := [biHelp]; End; End; Code:
procedure InitializeWizard(); Begin With WizardForm Do Begin BorderStyle:=bsnone; End; End; |
| The Following User Says Thank You to peterf1999 For This Useful Post: | ||
MMR (14-06-2013) | ||
|
#5
|
||||
|
||||
|
Quote:
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.
|
|
#6
|
||||
|
||||
|
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.
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Pac-Man World 2 not working on Windows 7 - due to Starforce, any crack available? | FahrenheitDegree | PC Games | 15 | 23-06-2019 13:34 |
| Windows XP - Tricks | gargujjwal | Software | 3 | 25-05-2008 02:54 |
| Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 09:48 |