Re: [WiX-users] setting a checkbox false value

2013-02-06 Thread Ryan Dansie
Hi, I'm building an installer which has a check box on the user interface. Based on whether this is checked or not, I want to set an appSetting in my windows service app.config file to True or False. This is working for the True case, but whenever I un-check the box, the app setting is left

Re: [WiX-users] setting a checkbox false value

2013-02-06 Thread Nick Ramirez
You could try to hardcode false in the app.config. Then, put a conditional statement inside the Component element that has the XmlFile in it so that the component will only be installed (and the app.config written to) if the property exists. When the box is deselected, the property should be

Re: [WiX-users] setting a checkbox false value

2013-02-06 Thread Hoover, Jacob
: [WiX-users] setting a checkbox false value You could try to hardcode false in the app.config. Then, put a conditional statement inside the Component element that has the XmlFile in it so that the component will only be installed (and the app.config written to) if the property exists. When the box