NSIS/Contrib/Banner
2003-01-27 15:44:13 +00:00
..
Banner.c Banner now "works" with the MUI too 2003-01-27 15:44:13 +00:00
Banner.dsp Banner now "works" with the MUI too 2003-01-27 15:44:13 +00:00
Banner.dsw Banner - shows some text before installation starts 2002-11-24 18:50:31 +00:00
Example.nsi Banner now "works" with the MUI too 2003-01-27 15:44:13 +00:00
Readme.txt Banner now "works" with the MUI too 2003-01-27 15:44:13 +00:00

Banner.dll shows a banner with customizable text.

There are only two functions, show and destroy. Show must be called
with the /NOUNLOAD flag or else it won't work. Show takes one argument
which is the text to show and destroy takes no arguments.

To use with the MUI use:

Banner::show /NOUNLOAD /set 76 "text to replace Please wait while Setup is loading..." "other text as normal"

You can use multiple /SETs to change the text of multiple labels. For example:

Banner::show /NOUNLOAD /set 76 "bah #1" /set 54 "bah #2" "other text as normal"

The second parameter for /set is the ID of the control that its text should be replaced in the dialog.

Look at Example.nsi for an example.

Created by Amir Szekely (aka KiCHiK)