[wix-users] Option for launching application
Nir Bar
nir.bar at panel-sw.com
Tue Oct 23 05:27:44 PDT 2018
If you're using WiX ExitDialog, note that it has: <Control Id="OptionalText" Type="Text" X="135" Y="110" Width="220" Height="80" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="[WIXUI_EXITDIALOGOPTIONALTEXT]"> <Condition Action="show">WIXUI_EXITDIALOGOPTIONALTEXT AND NOT Installed</Condition> </Control> <Control Id="OptionalCheckBox" Type="CheckBox" X="135" Y="190" Width="220" Height="40" Hidden="yes" Property="WIXUI_EXITDIALOGOPTIONALCHECKBOX" CheckBoxValue="1" Text="[WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT]"> <Condition Action="show">WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT AND NOT Installed</Condition> </Control> Meaning that the checkbox will only show when Installed property isn't defined. During minor upgrades, Installed is defined which is why it doesn't show. You need to modify ExitDialog to use a different show condition -- Nir Bar WiX Expert
More information about the wix-users
mailing list