Ok... Now I'm getting the following Exception from wix:

    [light] Unhandled Exception: System.InvalidOperationException: Unknown validation message type '0'.
    [light]    at Microsoft.Tools.WindowsInstallerXml.Validator.ValidationUIHandler (IntPtr context, UInt32 messageType, String message) in w:\Development\Forge\wix\src\wix\Validator.cs:line 351

I'm using the defualt wixui.wixlib and the following code:

<Module>
...
 <UI>

      <DialogRef Id='ExitDialog'/>
 </UI>
...
</Module>

When I debug wix, I see that an InvalidOperationException is bieng thrown by the switch on line 339 of the Validator.ValidationUIHandler method because the messageParts array contains the following:

- [0] = "ICE17"
- [1] = "0"
- [2] = "ICE Internal Error 105. API Returned: 1615."

where the switch doesn't know how to handle this type of message apparently!

HELP!?!?

Thanks,
Shmarya
On 7/29/06, Bob Arnson <[EMAIL PROTECTED]> wrote:
Shmarya Rubenstein wrote:
>     <InstallUISequence>
>       <Custom Action="" After="ExecuteAction">
>         <![CDATA[LAUNCHCONFIGURATIONCHECKED]]>
>     </Custom>
>     </InstallUISequence>
After MSI has processed the ExecuteAction action, it stops following the
sequence in InstallUISequence. Instead, it uses only the negative
sequence numbers to show success or failure.

Instead, publish a DoAction control event from the Finish/Close button
on the success dialog.

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




--
Shmarya
-----------------------------------------------------------
[EMAIL PROTECTED] - http://shmarya.net
NUnit rocks! http://nunit.com
-------------------------------------------------------------------------
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