> I have another question. In the InstallUISequence table, I 
> can set the 
> sequence to a negative number, something that is not permitted by the 
> Wix toolset.
> 
> How can set the sequence to "after successfull completion"?

See Common.wxs in src/ui/wixui:

<InstallUISequence>
  <Show Dialog="UserExit" OnExit="cancel" />
  <Show Dialog="FatalError" OnExit="error" />
  <Show Dialog="ExitDialog" OnExit="success" />
</InstallUISequence>
<AdminUISequence>
  <Show Dialog="UserExit" OnExit="cancel" />
  <Show Dialog="FatalError" OnExit="error" />
  <Show Dialog="ExitDialog" OnExit="success" />
</AdminUISequence>

sig://boB
http://bobs.org



-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
WiX-devs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wix-devs

Reply via email to