How do I fetch the value of a checkbox in the installscript in Installshield?
Background :
I have a checkbox which has property "UALCSTATUS"
and its value is "ON" .in the Dialogs section . When I fetch the value in installscript using the following command, it fetches 0 or nothing (whether checked or unchecked)
MsiGetProperty(hMSI, "UALCSTATUS", szStrValue, nVal);
Do I have to set a custom action when I check the checkbox so that I can set the value of "UALCSTATUS"
property in order that it gets set to "ON" .