Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Inno Setup How to add CRLF/line break in custom message

Tags:

inno-setup

Can I add CRLF (carriage return + line feed) in [CustomMessages] section?

Regards.

like image 561
Maverick Avatar asked Mar 13 '23 04:03

Maverick


1 Answers

The documentation on the [Messages] section says:

"%n" creates a line break.


See for example how the standard SetupAppRunningError is defined in the Default.isl:

SetupAppRunningError=Setup has detected that %1 is currently running.%n%nPlease close all instances of it now, then click OK to continue, or Cancel to exit.
like image 55
Martin Prikryl Avatar answered May 09 '23 05:05

Martin Prikryl