Here is my Ui text from my wix installer...(see bottom)

I am trying to add a custom dialog after the license and before the 
SetupTypedlg - compiles fine no errors but the MSI doesn’t do as intended
Jumps from Licence to setup?

Any tips on how to get this working...I tried including DialogRefs like
            <DialogRef Id=" LicenseAgreementDlg " /> 
But no difference



<UIRef Id="WixUI_Mondo" />
    <UI>
      <Dialog Id="DefPassDlg" Width="370" Height="150" Title="Enter a New 
Encrypted Password">
        <Control Type="PathEdit" Id="EncPasswordDlg" Width="241" Height="15" 
X="50" Y="67" Text="[EncPassword]" />
        <Control Type="PushButton" Id="Next" Width="56" Height="17" X="206" 
Y="98" Text="!(loc.WixUINext)" />
        <Control Type="PushButton" Id="Back" Width="56" Height="17" X="285" 
Y="98" Text="!(loc.WixUIBack)" />
                 <Control Id="Cancel" Type="PushButton" X="304" Y="243" 
Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)">
         <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
         </Control>
        <Control Type="Text" Id="TextEnc" Width="189" Height="34" X="52" Y="22">
          <Text>Enter the Encrypted Password.  This is a series of 8 
hexadecimal numbers</Text>
        </Control>
      </Dialog>
      <Publish Dialog="LicenseAgreementDlg" Control="Next" Event="NewDialog" 
Value="DefPassDlg" Order="2">LicenseAccepted = "1"</Publish>
      <Publish Dialog="DefPassDlg" Control="Back" Event="NewDialog" 
Value="LicenseAgreementDlg">1</Publish>
      <Publish Dialog="DefPassDlg" Control="Next" Event="NewDialog" 
Value="SetupTypeDlg">1</Publish>
      <Publish Dialog="SetupTypeDlg" Control="Back" Event="NewDialog" 
Value="DefPassDlg">1</Publish>
    </UI>


Ph: 32682688
Fax: 38681488
The views expressed in this email are those of the sender and may not equate to 
the views of the
Ascot Veterinary Surgery. 


------------------------------------------------------------------------------
This SF.net email is sponsored by:
High Quality Requirements in a Collaborative Environment.
Download a free trial of Rational Requirements Composer Now!
http://p.sf.net/sfu/www-ibm-com
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to