Hello Sanjay,
Thanks for reply but I am not able to understand about Orca. What is Orca?
Can you please give a brief about this.
On Wed, Apr 11, 2012 at 11:44 AM, Sanjay Rao
<s...@noida.interrasystems.com>wrote:
> You can use Orca to check the UI sequence and other controls in msi files.
> -Sanjay Rao
>
>
> On 4/11/2012 11:29 AM, Vivek Soni wrote:
>
> Hello Everybody,
>
> I have created a new Dialog which comes between Welcome and License
> Dialog. There was no error while building the application and the dialog I
> have created comes between Welcome and License Dialog but After License
> Dialog when I click to Next Button it fails and throws an Error "The
> installer has encountered an unexpected error installing this package. This
> may indicate a probelem with this package. The error code is 2819" .
>
> Can You Please Clarify what Mistake I am doing? Thanks in advance for
> any suggestion or Hint.
>
> Here is the Code of my application:-
> <?xml version="1.0" encoding="UTF-8"?>
> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
> <Product Id="*" Name="Dialog_Creation" Language="1033" Version="1.0.0.0"
> Manufacturer="Equilibrise"
> UpgradeCode="be8fe762-bc7c-4a41-8769-79eb9dd0a567">
> <Package InstallerVersion="200" Compressed="yes"
> InstallScope="perMachine" />
>
> <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is
> already installed." />
> <MediaTemplate />
>
> <Feature Id="ProductFeature" Title="Dialog_Creation" Level="1">
> <ComponentGroupRef Id="ProductComponents" />
> </Feature>
> </Product>
>
> <Fragment>
> <Directory Id="TARGETDIR" Name="SourceDir">
> <Directory Id="ProgramFilesFolder">
> <Directory Id="INSTALLFOLDER" Name="Dialog_Creation" />
> </Directory>
> </Directory>
> </Fragment>
>
> <Fragment>
> <!--Creting New UI-->
> <UI Id="WixUI_InstallDir">
> <!--Dimension of the UI-->
> <Dialog Id="SpecialDialog" NoMinimize="yes" Height="260" Width="365"
> X="10" Y="10" Title="FileSearch Setup-FileSearch Browser Toolbar">
> <Control TabSkip="no" X="20" Y="10" Width="350" Height="130"
> Id="Dlg" IconSize ="32" Type="Text"></Control>
>
> <Control Id="Statement" Type="Text" X="20" Y="35" Height="40"
> Width="250" >
> <Text>{\WixUI_Font_Title}Welcome To The File Search
> Toolbar:</Text>
> </Control>
> <Control Id="Continue" Type="PushButton" Default="yes"
> ElevationShield="yes" Height="16" Width="56" X="167" Y="237"
> Text="Continue">
> <Publish Event="NewDialog"
> Value="LicenseAgreementDlg">1</Publish>
> </Control>
> </Dialog>
>
> <TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" />
> <TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" />
> <TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9"
> Bold="yes" />
>
> <Property Id="DefaultUIFont" Value="WixUI_Font_Normal" />
> <Property Id="WixUI_Mode" Value="InstallDir" />
>
> <DialogRef Id="BrowseDlg" />
> <DialogRef Id="DiskCostDlg" />
> <DialogRef Id="ErrorDlg" />
> <DialogRef Id="FatalError" />
> <DialogRef Id="FilesInUse" />
> <DialogRef Id="MsiRMFilesInUse" />
> <DialogRef Id="PrepareDlg" />
> <DialogRef Id="ProgressDlg" />
> <DialogRef Id="ResumeDlg" />
> <DialogRef Id="UserExit" />
>
> <Publish Dialog="BrowseDlg" Control="OK" Event="DoAction"
> Value="WixUIValidatePath" Order="3">1</Publish>
> <Publish Dialog="BrowseDlg" Control="OK" Event="SpawnDialog"
> Value="InvalidDirDlg"
> Order="4"><![CDATA[WIXUI_INSTALLDIR_VALID<>"1"]]></Publish>
>
> <Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog"
> Value="Return" Order="999">1</Publish>
>
> <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog"
> Value="SpecialDialog">NOT Installed</Publish>
> <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog"
> Value="VerifyReadyDlg">Installed AND PATCH</Publish>
>
> <Publish Dialog="LicenseAgreementDlg" Control="Back"
> Event="NewDialog" Value="SpecialDialog">1</Publish>
> <Publish Dialog="LicenseAgreementDlg" Control="Next"
> Event="NewDialog" Value="InstallDirDlg">LicenseAccepted = "1"</Publish>
>
> <Publish Dialog="InstallDirDlg" Control="Back" Event="NewDialog"
> Value="LicenseAgreementDlg">1</Publish>
> <Publish Dialog="InstallDirDlg" Control="Next" Event="SetTargetPath"
> Value="[WIXUI_INSTALLDIR]" Order="1">1</Publish>
> <Publish Dialog="InstallDirDlg" Control="Next" Event="DoAction"
> Value="WixUIValidatePath" Order="2">NOT WIXUI_DONTVALIDATEPATH</Publish>
> <Publish Dialog="InstallDirDlg" Control="Next" Event="SpawnDialog"
> Value="InvalidDirDlg" Order="3"><![CDATA[NOT WIXUI_DONTVALIDATEPATH AND
> WIXUI_INSTALLDIR_VALID<>"1"]]></Publish>
> <Publish Dialog="InstallDirDlg" Control="Next" Event="NewDialog"
> Value="VerifyReadyDlg" Order="4">WIXUI_DONTVALIDATEPATH OR
> WIXUI_INSTALLDIR_VALID="1"</Publish>
> <Publish Dialog="InstallDirDlg" Control="ChangeFolder"
> Property="_BrowseProperty" Value="[WIXUI_INSTALLDIR]" Order="1">1</Publish>
> <Publish Dialog="InstallDirDlg" Control="ChangeFolder"
> Event="SpawnDialog" Value="BrowseDlg" Order="2">1</Publish>
>
> <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog"
> Value="InstallDirDlg" Order="1">NOT Installed</Publish>
> <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog"
> Value="MaintenanceTypeDlg" Order="2">Installed AND NOT PATCH</Publish>
> <Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog"
> Value="WelcomeDlg" Order="2">Installed AND PATCH</Publish>
>
> <Publish Dialog="MaintenanceWelcomeDlg" Control="Next"
> Event="NewDialog" Value="MaintenanceTypeDlg">1</Publish>
>
> <Publish Dialog="MaintenanceTypeDlg" Control="RepairButton"
> Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
> <Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton"
> Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
> <Publish Dialog="MaintenanceTypeDlg" Control="Back"
> Event="NewDialog" Value="MaintenanceWelcomeDlg">1</Publish>
>
> <Property Id="ARPNOMODIFY" Value="1" />
> </UI>
>
> <UIRef Id="WixUI_Common" />
> <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
> <!-- TODO: Remove the comments around this Component element and the
> ComponentRef below in order to add resources to this installer. -->
> <!-- <Component Id="ProductComponent"> -->
> <!-- TODO: Insert files, registry keys, and other resources here. -->
> <!-- </Component> -->
> </ComponentGroup>
> </Fragment>
> </Wix>
>
> I have added WixUIExtension.dll in References.
>
> --
> Warm Regards
> Vivek Soni
> vivek.s...@brisetech.com
> +91-7877127178
>
>
>
>
>
> ------------------------------------------------------------------------------
> Better than sec? Nothing is better than sec when it comes to
> monitoring Big Data applications. Try Boundary one-second
> resolution app monitoring today. Free.http://p.sf.net/sfu/Boundary-dev2dev
>
>
>
> _______________________________________________
> WiX-devs mailing
> listWiX-devs@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wix-devs
>
>
>
> --
> Sanjay Rao
> Digital Media Group, Interra
> Systemssrao@interrasystems.comhttp://www.interrasystems.com
>
>
>
> ------------------------------------------------------------------------------
> Better than sec? Nothing is better than sec when it comes to
> monitoring Big Data applications. Try Boundary one-second
> resolution app monitoring today. Free.
> http://p.sf.net/sfu/Boundary-dev2dev
> _______________________________________________
> WiX-devs mailing list
> WiX-devs@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-devs
>
>
--
Warm Regards
Vivek Soni
vivek.s...@brisetech.com
+91-7877127178
------------------------------------------------------------------------------
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
_______________________________________________
WiX-devs mailing list
WiX-devs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-devs