DropF
20th April 2003 11:22 UTC
[RESOLVED] Component's Page Style
Hello,
when I install NSIS, I see a component's page like that:
http://perso.wanadoo.fr/dropf/Screenshot2.png
But when I compile my project, i have a component's page like this one:
http://perso.wanadoo.fr/dropf/Screenshot1.png
Both don't have the same tree view and description style. How can I get the same component's page of NSIS' installer? I know I can edit the modern.exe file with ResHack (by changing dialog No.104), but I would like to do it in a "proper" way.
Thx (sorry for my bad English, because I'm French ;))
Joost Verburg
20th April 2003 11:39 UTC
Check the Modern UI Readme :D
!define MUI_COMPONENTSPAGE_SMALLDESC
before the MUI_LANGUAGE macro's
DropF
20th April 2003 12:06 UTC
Thank you, it works!
But I don't understand anything: yesterday I tried this command and it didn't work... maybe I pulled it after the language macro :p
Thank you.
Joost Verburg
20th April 2003 13:09 UTC
You can find the right order of commands in the Readme :)
Joel
20th April 2003 15:15 UTC
also depends for how many sections and subsection you have:
SubSection
Section "Section 1"
;Hello dude
SectionEnd
SubSection
Section "Section 2"
;Hello again
SectionEnd
Section "Section 3"
;Me again
SectionEnd
SubSectionEnd
Section "Section 4"
;I finish
SectionEnd
SubSectionEnd
kichik
20th April 2003 16:41 UTC
Sections and sub-sections has nothing to do with this.