Here is my code. Currently I can launch my own application, but cannot get the 2nd checkbox showing up. Seems like WIXUI_EXITDIALOGOPTIONALCHECKBOX and WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT are the required property value to define the checkbox, i.e., they cannot be modified, so I guess my problem is I cannot use the same property ID for two checkboxes. Anyone has a workaround? Thanks.
<UI> <UIRef Id="WixUI_Mondo" /> <!-- launch my application, working --> <Publish Dialog="ExitDialog" Control="Finish" Event="DoAction" Value="LaunchMyApp">WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed</Publish> <!-- install 3rd party application, not working --> <Publish Dialog="ExitDialog" Control="Finish" Event="DoAction" Value="LaunchABCInstallation">WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed</Publish> </UI> <UIRef Id="WixUI_ErrorProgressText" /> <Property Id="WixShellExecTargetMyApp" Value="[#myAppEXE]" /> <CustomAction Id=" LaunchMyApp " BinaryKey="WixCA" DllEntry="WixShellExec" Impersonate="yes" /> <Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" Value="Launch my application after installation is complete." /> <Property Id="WixShellExecTargetOther" Value="[#abcEXE]" /> <CustomAction Id=" LaunchABCInstallation " BinaryKey="WixCA" DllEntry="WixShellExec" Impersonate="yes" /> <Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOX_other_TXT" Value="Install 3rd party application." /> -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jason Ding Sent: September 18, 2008 11:22 AM To: WiX-users@lists.sourceforge.net Subject: [WiX-users] Finish button on Exit dialog Hello All, Can Finish button on the Exit dialog trigger more than one action, such as Install a 3rd party application and Launch my own application? My application can be launched on the Exit dialog after I added into a checkbox and a custom action, I am just following the same way to add in another custom action to install a 3rd party application, but there is no checkbox shown up on the exit dialog after I am done, including the previously working checkbox. Am I on the right path? If anyone can confirm this that would be great. Thanks. Jason ------------------------------------------------------------------------ - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users