Q: modern GUI and required section
Hi,
How can I specify a required Section with modern GUI?
I want the user can see it in the list but he can't uncheck it.
Section "txt2pdf${VER} (required)" SecCopyTxt2pdf
will work with no modern GUI.
Fabrizio
Archive: Q: modern GUI and required section
Q: modern GUI and required section
Hi,
How can I specify a required Section with modern GUI?
I want the user can see it in the list but he can't uncheck it.
Section "txt2pdf${VER} (required)" SecCopyTxt2pdf
will work with no modern GUI.
Fabrizio
Are you sure you don't mean no NSIS v2? In NSIS v2 you should use SectionIn RO to make the section read only so the user can't uncheck it.
Section bla secBlaName
.exe
SectionIn RO
File bla
SectionEnd
>
Perfect. :)