Components page TreeView
Hi,
I want to set the tick box in Components page TreeView to be grayed out so user can not select it. I am wondering if there a build-in way in NSIS to do it. Thanks.
Archive: Components page TreeView
Components page TreeView
Hi,
I want to set the tick box in Components page TreeView to be grayed out so user can not select it. I am wondering if there a build-in way in NSIS to do it. Thanks.
Section "my section"
SectionIn RO
SectionEnd
That's selected and gray. To get unselected and gray, use:
Section /o "my section"
SectionIn RO
SectionEnd
Thanx guys!