Archive: Disable a component selection


Disable a component selection
Hi all,

I am creating an installer and on the selection of components (sections) page; I want this MainSection to be displayed but its checkbox should always be checked and disabled. i.e the user should not be able to change it. I guess it has somethin to do with SectionSetFlags??

Section "MainSection" SEC01
SetOutPath "$PROGRAMFILES\EBICS Client Installer (Sahil)"
SectionSetFlags SEC01 ....
SetOverwrite ifnewer
File "..\Package Files\Morris.txt"
File "..\Package Files\MorrisJnr.hint"



Please advice. I m still very new to the NSIS world.


SectionIn RO

Put that in your section.

Stu


Yup..thanks. It works :)