Where is the sequence of the install types defined?  For instance, I know
that by copying WixUI_Mondo.wxs --> LWWixUI_Mondo.wxs I can add dialogs, and
control the sequence there.  However, at the top it says "First-time install
dialog sequence" and "Maintenance dialog sequence", but where does it let
the installer know when to kick in the ProgressDlg when the install is
happening?  Is this because of the <InstallUISequence /> tag in
ProgressDlg.wxs?  The reason I ask is that I'm trying to figure out what I'd
do to add a dialog after the ProgressDlg, and before the ExitDialog.  Would
I just add a

<InstallUISequence>
 <Show Dialog="MyDialog" After="ExecuteAction"/>
</InstallUISequence

OR...

Would I just add in my LWWixUI_Mondo.wxs file something like this:

<Publish Dialog="ProgressDlg" Control="Next" Event="NewDialog"
Value="MyDialog">1</Publish>
<Publish Dialog="MyDialog" Control="Next" Event="NewDialog"
Value="ExitDialog">1</Publish>

Sorry for all the UI questions (Bob :-)

- Levi
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to