Action 15:49:45: ConfigSFSDlg. Dialog created
DEBUG: Error 2803:  Dialog View did not find a record for the dialog

I got the above error while installing the msi file. I added a new dialog 
"ConfigSFSDlg" right after the "Welcome" dialog. I have a ConfigSFSDlg.wxs 
defines the screen. Below is a modified version of WixUI_InstallDir.wxs. Am I 
missing something? How does this WixUI_InstallDir.wxs knows about ConfigSFSDlg?


<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi";>
    <Fragment>
        <UI Id="WixUI_InstallDir_SFS">
            <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="ConfigSFSDlg" />
            <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="ExitDialog" Control="Finish" Event="EndDialog" 
Value="Return" Order="999">1</Publish>
            <Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" 
Value="ConfigSFSDlg">1</Publish>

            <Publish Dialog="ConfigSFSDlg" Control="Back" Event="NewDialog" 
Value="WelcomeDlg">1</Publish>
            <Publish Dialog="ConfigSFSDlg" Control="Next" Event="NewDialog" 
Value="InstallDirDlg">1</Publish>

                                                <!--
            <Publish Dialog="LicenseAgreementDlg" Control="Back" 
Event="NewDialog" Value="WelcomeDlg">1</Publish>
            <Publish Dialog="LicenseAgreementDlg" Control="Next" 
Event="NewDialog" Value="InstallDirDlg">LicenseAccepted = "1"</Publish>
                                                -->
            <Publish Dialog="InstallDirDlg" Control="Back" Event="NewDialog" 
Value="ConfigSFSDlg">1</Publish>

....


Thanks
Jirong Hu
Build Master
780-644-5488


This communication is intended for the use of the recipient to which it is 
addressed, and may contain confidential, personal, and or privileged 
information. Please contact us immediately if you are not the intended 
recipient of this communication, and do not copy, distribute, or take action 
relying on it. Any communication received in error, or subsequent reply, should 
be deleted or destroyed.
------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to