Re: [WiX-users] Exit dialog text

2010-01-22 Thread Blair
Windows Installer XML toolset. Subject: Re: [WiX-users] Exit dialog text How would using MsiGetMode help us? We can already determine whether or not a reboot is required by inspecting the REBOOT property, but we'd like to change the default UI experience in order to accommodate our need f

Re: [WiX-users] Exit dialog text

2010-01-22 Thread Tony
22, 2010 at 12:43 PM, Blair wrote: > Would a custom action that calls the MsiGetMode() api be acceptable? > > -Original Message- > From: Tony [mailto:yellowjacketl...@gmail.com] > Sent: Friday, January 22, 2010 7:58 AM > To: General discussion for Windows Installer XML toolset. > Subj

Re: [WiX-users] Exit dialog text

2010-01-22 Thread Blair
Would a custom action that calls the MsiGetMode() api be acceptable? -Original Message- From: Tony [mailto:yellowjacketl...@gmail.com] Sent: Friday, January 22, 2010 7:58 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Exit dialog text Our default

Re: [WiX-users] Exit dialog text

2010-01-22 Thread Tony
cute sequence is run in a different process than the ui sequence and > the properties don't "flow" back. > > -Original Message- > From: Tony [mailto:yellowjacketl...@gmail.com] > Sent: Thursday, January 21, 2010 10:50 AM > To: WiX Users > Subject: [WiX-use

Re: [WiX-users] Exit dialog text

2010-01-21 Thread Blair
The execute sequence is run in a different process than the ui sequence and the properties don't "flow" back. -Original Message- From: Tony [mailto:yellowjacketl...@gmail.com] Sent: Thursday, January 21, 2010 10:50 AM To: WiX Users Subject: [WiX-users] Exit dialog text

[WiX-users] Exit dialog text

2010-01-21 Thread Tony
By setting the property WIXUI_EXITDIALOGOPTIONALTEXT it is possible to change the displayed text on the ExitDialog. If the property is changed during the execute sequence, then the text is not updated. The reason this occurs is because the dialog is created at the end of the UI sequence. Is there