Hello,

This is my first post on this list, tried searching the archive but did
not help.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
VERSION INFO - I'm using Wix-3.0.2925.0.msi, Votive3.msi
(Votive-3.0.2015.0.zip) with some intermittent support from
wixedit-0.6.1762.msi.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

I've made a custom dialog and I am having problems sequencing it. I want
it to appear after the CustomizableDlg and before the VerifyReadyDlg.

When I try to specify where in the sequence I want my custom dialog I
can't compile my Wix project.

My code:

    <UI>
      <UIRef Id="WixUI_Mondo" />
      <UIRef Id="WixUI_ErrorProgressText" />

      <Dialog Id="HelloWorldDlg" ... [snip] />

      <InstallUISequence>
        <Show Dialog="HelloWorldDlg" Before="VerifyReadyDlg" />
      </InstallUISequence>
    </UI>

i.e. when I use the code above I get this link exception.

Error LGHT0094: Unresolved reference to symbol
'WixAction:InstallUISequence/VerifyReadyDlg' in section
'Product:{2B13E785-D47A-4D58-9B8D-12153E5F368A}'.

I have added a project reference to WixUIExtension.dll and my linker is
configured to build output for the en-US culture.

If I try After="CustomizeDlg", linking fails just as above.

If I try scheduling my dialog after say "MigrateFeatureStates" (or
relative WelcomeDlg) instead it compiles, but I seem to have no control
of the dialog order or dialog navigation gets all screwed up.

I have tried a bunch of other random things, including trying to use the
DialogRef element, but nothing seems to work.

What am I missing? I am assuming (hoping) I don't have to roll my own
UIExtension assembly just to do this?

/Mathias

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to