Thank you for the advice.  Now I can use checkboxes to customize my
installation.  However, when I tried to put the same checkbox on the modify
screen for selection during uninstallation, they don't seem to work.  

My code looks like the following, selective installation works, but
uninstallation does not.  Any ideas?
Thank you very much for your help!

<Page Name="Modify">
    <Text X="11" Y="80" Width="-11" Height="30" FontId="2"
DisablePrefix="yes">#(loc.ModifyHeader)</Text>
    <Checkbox Name="Component 1" Height="30" Width="200" X="-250" Y="-180"
FontId="0">Component 1</Checkbox>
    <Checkbox Name="Component 2" Height="30" Width="200" X="-250" Y="-150"
FontId="0">Component 2</Checkbox>

And I have the following in Bundle.wxs:
<Variable Name="Comp1" Value="0"/>
<Variable Name="Comp2" Value="0"/>

<Chain>
      <PackageGroupRef Id="NetFx40Redist"/>
      <MsiPackage DisplayInternalUI="yes" SourceFile="comp1.msi"
InstallCondition=" Comp1=1"/>
      <MsiPackage DisplayInternalUI="yes" SourceFile="comp2.msi"
InstallCondition="Comp2=1"/>



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Bootstrapper-Custom-UI-Checkbox-to-customize-install-tp7596905p7597085.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to