Skip to content
⌘ NSIS Forum Archive

Read checkbox values from MUI_PAGE_COMPONENTS

4 posts

blancocs#

Read checkbox values from MUI_PAGE_COMPONENTS

Hello, i'm having a problem. i don't know how to read the values from my checkbox inside de MUI_PAGE_COMPONENTS.

how can i do it?
msroboto#
This should do it...

SectionGetFlags <Sectionnamehere> $Var

Also,
SectionSetFlags <Sectionnamehere> $Var
blancocs#
thanks!! it's "working"..i have 2 section... and always catch the value from de first!! i don't know why!
demiller9#
The SectionGetFlag statements have to be located after the Sections themselves, otherwise the section names (defines) haven't been defined yet. Undefined names are 0, which is the first section's value.