Pseudonymic Wannabe wrote:
> For our installation we have a lot of custom actions being called, all 
> the post-install ones are chain-schedualed after InstallFinalize

As an aside: That's outside the install transaction, so you can leave 
the machine in a bad state if any custom action fails.

> NOT INSTALLED AND NOT REINSTALL does NOT seem to work for a "Show", IF 
> condition for a control on the ExitDialog page though (The same 
> exit-dialog page is shown for install, repair and uninstall). We want 
> to show a checkbox for application-launch, which of course should only 
> show on fresh install.

Is that a literal? The actual property is Installed not INSTALLED. 
Here's what WixUI uses for the same type of checkbox:

<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>

-- 
sig://boB
http://joyofsetup.com/



-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to