I using NSIS to install my project. I need to show or hide section based on flag in Uninstall Component page. I used SectionSetText ${SecId} ""
and now in uninstall component page I
don't see section text but the checkbox is visible.
Is there some way to hide the checkbox along with section text?
Asked
Active
Viewed 51 times
0

saravana
- 544
- 1
- 7
- 26
1 Answers
0
You cannot toggle the visibility of a section while you are on the components page. The page pre callback is your last chance to configure...

Anders
- 97,548
- 12
- 110
- 164
-
So is it possible to hide component module section along with checkbox? I am trying on page callbacks. – saravana Jan 27 '23 at 03:09
-
You can hide controls in the show callback of the page. – Anders Jan 27 '23 at 15:48
-
thank you, i updated in the pre-callback function and working fine now. – saravana Jan 31 '23 at 15:41