2008/10/28 Peter Vestergaard <[EMAIL PROTECTED]>:
> Thanks for your reply.
> What do you mean by sequence it.

Place it in the sequential UI flow.

>I placed my custom dialog between progress
> and exit dialogs.
> I follwed Pally's advise and did this:
>
> <Publish Dialog="MyExitDialog" Control="Finish" Event="DoAction"
> Value="MyCustomAction"">CHECKBOXVALUE = "1" </Publish>
>
> The custom action is launched, but now my installer won't shut down, since
> the event has been changed from EndDialog to DoAction...

I don't know what your CustomAction looks like but be sure to have
something like this:
    <CustomAction Id="LaunchApplication"
        FileKey="MyProgramId"
        ExeCommand='My params to make my apps run'
        Return='asyncNoWait'
        Impersonate="yes" />

The behavior you observe comes from the default value of the Return attribute.
It's all in the doc even if I suspect their example is broken.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to