I am trying to give the option to delete some extra files if the user checks
a checkbox on uninstall. I can bypass the checkbox and make it delete the
files but when the checkbox is present, it deletes the files whether it is
checked or not. Any ideas what I am doing wrong? 
Code segments below.
Thanks,
Mark

--------------------------------------------------
<Control Id='All_Files' Type='CheckBox' X='10' Y='30' Width='400'
Height='18' Property='DELALL' CheckBoxValue="1" >
        <Text>Check the box to Delete extensibility.dll</Text>
</Control>

<Control Id='RemoveNow' Type='PushButton' X='276' Y='210' Width='90'
Height='18' Default='yes'>
        <Text><![CDATA[{\Tahoma10}&Remove Now]]></Text>
</Control>

---------------------------------------------------

<Component Id='MyComponent' Guid='BLah BLah BLah-123456789012'>
        <Condition>
               DELALL = "1"
        </Condition>

        <RemoveFile Id='LogFile' On='uninstall' Name='*.*' />
        <RemoveFolder Id='TheDir' On='uninstall'/>
                                        
</Component>
-----------------------------------------------------
-- 
View this message in context: 
http://www.nabble.com/Checkbox-does-not-recognize-when-it-is-checked-tf4683976.html#a13384533
Sent from the wix-users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to