Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Inno Setup - How can I put a message on the welcome page

Tags:

inno-setup

Can I put a message on the Inno Setup Welcome page? I would like something like this

like image 765
健榮 陳 Avatar asked Nov 28 '22 16:11

健榮 陳


1 Answers

You can change the text of the welcome message by overriding the value on the [Messages] section:

[Messages]
WelcomeLabel2=This will install [name/ver] on your computer.%n%nIt is recommended that you close all other applications and disable any anti virus before continuing.

If you want to change the style (colour, size, etc) then you will need to create and position the controls individually in the InitializeWizard() event function.

like image 63
Deanna Avatar answered Jan 18 '23 13:01

Deanna