[WiX-users] Separate ExitDialog for Uninstall

2008-06-20 Thread Troy Simpson
Hi, I'm building the new win32 installer for Subversion with WiX but I've struck one snag. I would like to display a different dialog for install, uninstall, and possibly repair. I have customised the ExitDialog to show a nice post-install message for users, but obviously upon uninstall it

Re: [WiX-users] Separate ExitDialog for Uninstall

2008-06-20 Thread Calin Iaru
If I were you, I would play with InstallUISequence where some variations could yield the expected results. This is how I display a Firewall Dialog which adds some applications to the Windows Firewall after installation. Normally, the ExitDlg would be displayed when finishing the installation,

Re: [WiX-users] Separate ExitDialog for Uninstall

2008-06-20 Thread Calin Iaru
Or you can use the same ExitDlg and customize the elements inside it like bitmaps, static text, position of elements based on conditions. Control Id=Description1 Type=Text X=135 Y=130 Width=220 Height=40 Text=For new users, we recommend that you read the quick guide located on the web.

Re: [WiX-users] Separate ExitDialog for Uninstall

2008-06-20 Thread Troy Simpson
there that can be tweaked? Troy -Original Message- From: [EMAIL PROTECTED] [mailto:wix-users- [EMAIL PROTECTED] On Behalf Of Calin Iaru Sent: Friday, 20 June 2008 5:49 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Separate ExitDialog

Re: [WiX-users] Separate ExitDialog for Uninstall

2008-06-20 Thread Calin Iaru
Message- From: [EMAIL PROTECTED] [mailto:wix-users- [EMAIL PROTECTED] On Behalf Of Calin Iaru Sent: Friday, 20 June 2008 5:49 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Separate ExitDialog for Uninstall Or you can use the same ExitDlg and customize

Re: [WiX-users] Separate ExitDialog for Uninstall

2008-06-20 Thread Troy Simpson
Installer XML toolset. Subject: Re: [WiX-users] Separate ExitDialog for Uninstall EXISTINGPRODUCTS was a suggestion; what you need to do is to use a different property that when set, will show a different dialog control. For instance, if the user does an uninstall, use the REMOVE=ALL

Re: [WiX-users] Separate ExitDialog for Uninstall

2008-06-20 Thread Calin Iaru
Installer XML toolset. Subject: Re: [WiX-users] Separate ExitDialog for Uninstall EXISTINGPRODUCTS was a suggestion; what you need to do is to use a different property that when set, will show a different dialog control. For instance, if the user does an uninstall, use the REMOVE=ALL condition

Re: [WiX-users] Separate ExitDialog for Uninstall

2008-06-20 Thread Troy Simpson
: [EMAIL PROTECTED] [mailto:wix-users- [EMAIL PROTECTED] On Behalf Of Calin Iaru Sent: Friday, 20 June 2008 7:58 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Separate ExitDialog for Uninstall There is a difference between REMOVE and Remove - the first

Re: [WiX-users] Separate ExitDialog for Uninstall

2008-06-20 Thread Calin Iaru
- [EMAIL PROTECTED] On Behalf Of Calin Iaru Sent: Friday, 20 June 2008 7:58 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Separate ExitDialog for Uninstall There is a difference between REMOVE and Remove - the first one is a public property, the second

Re: [WiX-users] Separate ExitDialog for Uninstall

2008-06-20 Thread Tony Juricic
Event=DoAction Value=MY_CA_SomethingElse Order=2/ -Original Message- From: Troy Simpson [mailto:[EMAIL PROTECTED] Sent: Friday, June 20, 2008 6:17 AM To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] Separate ExitDialog for Uninstall I think I see

Re: [WiX-users] Separate ExitDialog for Uninstall

2008-06-20 Thread Troy Simpson
.' Subject: RE: [WiX-users] Separate ExitDialog for Uninstall I'm not sure how much research I would have needed to discover I did not add a 'hidden' attribute to the control. It was a bad assumption on my behalf that a condition to show does not imply an otherwise non-displaying state