section "myapp"
SectionIn RO;for lock section
section end
section "opton1" op1
;this section is free
section end
section "opton2" op2
;this section is free
section end
im how can check in section "myapp" for order that my user selected section "opton1" op1 or selected section "opton2" op2 ?
i just want this check Be done in section "myapp".
i need something like:
section "myapp"
SectionIn RO;for lock section
if user selected op1
MessageBox MB_OK "user selected section op1"
end if
if user selected op2
MessageBox MB_OK "user selected section op2"
end if
section end
section "opton1" op1
;this section is free
section end
section "opton2" op2
;this section is free
section end