Remove Windows Frame - Inno Setup

Andre Garcia

I have a background in my installer and i was wondering that it would be a good idea to remove the windows frame from it and kept only the background and the footer buttons.

It´s possible in Inno Setup to remove Windows frame from installer?

TLama

You can set the BorderStyle property of your WizardForm to bsNone to make it borderless. The best place to do so is the InitializeWizard event method:

procedure InitializeWizard;
begin
  WizardForm.BorderStyle := bsNone;
end;

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Set Windows file version for a setup file created by Inno Setup

From Dev

Inno Setup find subfolder

From Dev

Inno 5 setup get Windows User name

From Dev

"Not in a loop " error in inno setup

From Dev

Inno Setup WizardImageFile looks bad with font scaling on Windows 7

From Dev

Inno Setup remove/hide (not just disable) the Back button on a Wizard Page

From Dev

How can i get Inno setup uninstaller script to remove a service

From Dev

Inno Setup: MinVersion not working for Windows 10

From Dev

Inno Setup Message Arguments

From Dev

Inno Setup query Windows service status

From Dev

Create a hardlink with Inno Setup

From Dev

Inno Setup Setting named pipe on Windows x64

From Dev

How to make Inno Setup installers install only on server versions of Windows

From Dev

Inno Setup - How to Install Windows Update Offline Installer

From Dev

Remove "_is1" suffix from Inno Setup AppId

From Dev

Execute different command in Inno Setup Run section based on Windows version

From Dev

Inno Setup Exception is not caught

From Dev

Inno Setup: Color for modal and browse directory windows

From Dev

Creating a windows installer for python using inno setup

From Dev

How to remove the bottom panel in install page in inno setup

From Dev

Remove Windows Frame - Inno Setup

From Dev

Can Inno Setup install set up a Windows security group?

From Dev

How can i get Inno setup uninstaller script to remove a service

From Dev

How to make Inno Setup installers install only on server versions of Windows

From Dev

Inno Setup: Color for modal and browse directory windows

From Dev

Inno Setup Check additional (Windows Installer) mutex

From Dev

Installing Windows shell extension DLL with Inno Setup installer

From Dev

Inno Setup: Custom page to select Update or Remove/Uninstall

From Dev

Inno Setup shortcuts for folder are not opening in Windows 10

Related Related

  1. 1

    Set Windows file version for a setup file created by Inno Setup

  2. 2

    Inno Setup find subfolder

  3. 3

    Inno 5 setup get Windows User name

  4. 4

    "Not in a loop " error in inno setup

  5. 5

    Inno Setup WizardImageFile looks bad with font scaling on Windows 7

  6. 6

    Inno Setup remove/hide (not just disable) the Back button on a Wizard Page

  7. 7

    How can i get Inno setup uninstaller script to remove a service

  8. 8

    Inno Setup: MinVersion not working for Windows 10

  9. 9

    Inno Setup Message Arguments

  10. 10

    Inno Setup query Windows service status

  11. 11

    Create a hardlink with Inno Setup

  12. 12

    Inno Setup Setting named pipe on Windows x64

  13. 13

    How to make Inno Setup installers install only on server versions of Windows

  14. 14

    Inno Setup - How to Install Windows Update Offline Installer

  15. 15

    Remove "_is1" suffix from Inno Setup AppId

  16. 16

    Execute different command in Inno Setup Run section based on Windows version

  17. 17

    Inno Setup Exception is not caught

  18. 18

    Inno Setup: Color for modal and browse directory windows

  19. 19

    Creating a windows installer for python using inno setup

  20. 20

    How to remove the bottom panel in install page in inno setup

  21. 21

    Remove Windows Frame - Inno Setup

  22. 22

    Can Inno Setup install set up a Windows security group?

  23. 23

    How can i get Inno setup uninstaller script to remove a service

  24. 24

    How to make Inno Setup installers install only on server versions of Windows

  25. 25

    Inno Setup: Color for modal and browse directory windows

  26. 26

    Inno Setup Check additional (Windows Installer) mutex

  27. 27

    Installing Windows shell extension DLL with Inno Setup installer

  28. 28

    Inno Setup: Custom page to select Update or Remove/Uninstall

  29. 29

    Inno Setup shortcuts for folder are not opening in Windows 10

HotTag

Archive