Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3598862
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T20:17:44+00:00 2026-05-18T20:17:44+00:00

InnoSetup by default displays the license agreement in a really tiny text area that

  • 0

InnoSetup by default displays the license agreement in a really tiny text area that the user can’t make bigger in any way.

While I know most people don’t read these, I feel that providing it in a format that makes it particularly hard to read is a bad idea, and might form part of a defense in court.

Is there any way in InnoSetup to display the license in a large separate window? A pre-rolled Pascal script perhaps?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T20:17:44+00:00Added an answer on May 18, 2026 at 8:17 pm

    You can change the WizardForm size and rearrange the controls in it if you want to make it bigger. I made this example to show you how to change the form height for the License page.

    [Setup]
    AppName=StackOverflow large license box
    AppVersion=1.0
    CreateAppDir=no
    DisableProgramGroupPage=yes
    DefaultGroupName=My Program
    UninstallDisplayIcon={app}\MyProg.exe
    LicenseFile=license.txt
    ;OutputDir=userdocs:Inno Setup Examples Output
    
    [Code]
    
    var
      DefaultTop, 
      DefaultLeft, 
      DefaultHeight,
      DefaultBackTop, 
      DefaultNextTop, 
      DefaultCancelTop,
      DefaultBevelTop, 
      DefaultOuterHeight: Integer;
    
    const 
      LicenseHeight = 600;
    
    procedure InitializeWizard();
    begin
      DefaultTop := WizardForm.Top;
      DefaultLeft := WizardForm.Left;
      DefaultHeight := WizardForm.Height;
      DefaultBackTop := WizardForm.BackButton.Top;
      DefaultNextTop := WizardForm.NextButton.Top;
      DefaultCancelTop := WizardForm.CancelButton.Top;
      DefaultBevelTop := WizardForm.Bevel.Top;
      DefaultOuterHeight := WizardForm.OuterNotebook.Height;
    
      WizardForm.InnerPage.Height := WizardForm.InnerPage.Height + (LicenseHeight - DefaultHeight);
      WizardForm.InnerNotebook.Height :=  WizardForm.InnerNotebook.Height + (LicenseHeight - DefaultHeight);
      WizardForm.LicensePage.Height := WizardForm.LicensePage.Height + (LicenseHeight - DefaultHeight);
      WizardForm.LicenseMemo.Height := WizardForm.LicenseMemo.Height + (LicenseHeight - DefaultHeight);
      WizardForm.LicenseNotAcceptedRadio.Top := WizardForm.LicenseNotAcceptedRadio.Top + (LicenseHeight - DefaultHeight);
      WizardForm.LicenseAcceptedRadio.Top := WizardForm.LicenseAcceptedRadio.Top + (LicenseHeight - DefaultHeight);
    
    end;
    
    procedure CurPageChanged(CurPageID: Integer);
    begin
      if CurPageID = wpLicense then
      begin
        WizardForm.Top := DefaultTop - (LicenseHeight - DefaultHeight) div 2;
        WizardForm.Height := LicenseHeight;
        WizardForm.OuterNotebook.Height := WizardForm.OuterNotebook.Height + (LicenseHeight - DefaultHeight);
        WizardForm.CancelButton.Top := DefaultCancelTop + (LicenseHeight - DefaultHeight);
        WizardForm.NextButton.Top := DefaultNextTop + (LicenseHeight - DefaultHeight);
        WizardForm.BackButton.Top := DefaultBackTop + (LicenseHeight - DefaultHeight);
        WizardForm.Bevel.Top := DefaultBevelTop + (LicenseHeight - DefaultHeight);
      end
      else 
      begin
        WizardForm.Top := DefaultTop;
        WizardForm.Left := DefaultLeft;
        WizardForm.Height := DefaultHeight;
        WizardForm.OuterNotebook.Height := DefaultOuterHeight;
        WizardForm.CancelButton.Top := DefaultCancelTop;
        WizardForm.NextButton.Top := DefaultNextTop;
        WizardForm.BackButton.Top := DefaultBackTop;
        WizardForm.Bevel.Top := DefaultBevelTop;
      end;
    end;
    

    Copy it to a new iss file and provide a valid license.txt file in order to compile successfully. The script is tested with inno 5.4.0 but it should work with any 5.x.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

InnoSetup by default displays the license agreement in a really tiny text area that
My InnoSetup script opens a web page (with the user's default browser) at the
How can I remove a desktop shortcut by Innosetup? It's created by previous version
How to know what language user have selected to install setup in innosetup ?
During installation, it's possible to update the InnoSetup wizard status text from inside the
I have an Inno Setup installer for an app that offers the user a
When I start a InnoSetup installer from a WPF app, I can't interact with
I have an innosetup installer that needs to create an IIS Virtual Directory. In
Is there a Windows installer that will add to startup for each user like
I'm using InnoSetup for creating my application installers and I set the SetupLogging=yes flag

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.