Can you share the code for your Dlg1 where you have defined the dialog
box and controls, should be something like:

<Dialog Id="Dlg1" Width="370" Height="270" Title="...">
...
...
</Dialog>


-----Original Message-----
From: Sagar1111 [mailto:sagarkavitak...@gmail.com] 
Sent: Monday, March 29, 2010 1:52 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Wix UI navigation Help


Thw warning Dialog box gets displayed. but when i press 'Proceed
Anyways'
button it sets the PROCEED property to '1' and closes itself. but the
wizard
stays at Dlg1. and does not navigate to Dlg2.

Here is what the log says:

Action 10:56:17: Dlg1. Dialog created
MSI (c) (1C:68) [10:56:20:142]: Doing action: TestExistenceCA
Action 10:56:20: TestExistenceCA. 
Action start 10:56:20: TestExistenceCA.
MSI (c) (1C:D4) [10:56:20:423]: Invoking remote custom action. DLL:
C:\Users\sagar1111\AppData\Local\Temp\MSI1F34.tmp, Entrypoint:
TestExistenceCA
MSI (c) (1C:1C) [10:56:20:504]: Cloaking enabled.
MSI (c) (1C:1C) [10:56:20:612]: Attempting to enable all disabled
privileges
before calling Install on Server
MSI (c) (1C:1C) [10:56:20:697]: Connected to service for CA interface.
MSI (c) (1C!CC) [10:56:26:869]: PROPERTY CHANGE: Adding WARNING
property.
Its value is '1'.
Action ended 10:56:28: TestExistenceCA. Return value 1.
Action 10:56:28: WarningDialogBox. Dialog created
MSI (c) (1C:68) [10:56:37:063]: PROPERTY CHANGE: Adding PROCEED
property.
Its value is '1'.

After this i see my DialogBox Dlg1 itself, where as it should have
navigated
to DialogBox Dlg2

Here is snippet of my wxs file:

        <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56"
Height="17" Default="yes"  
Text="&Next"> 
          <Publish Event="DoAction" Value="Check" Order="1">1</Publish> 
          <Publish Event="SpawnDialog" Value="WarningDialog">WARNING =
"1"</Publish> 
          <Publish Event="NewDialog" Value="Dlg2">PROCEED = "1" OR
WARNING="0"</Publish> 
        </Control> 

      <Dialog Id="WarningDialog" Width="260" Height="85"
Title="Warning"> 
        <Control Id="No" Type="PushButton" X="132" Y="57" Width="56"
Height="17" Default="yes" Cancel="yes" Text="!(loc.WixUINo)"> 
          <Publish Event="EndDialog" Value="Return">1</Publish> 
        </Control> 
        <Control Id="Yes" Type="PushButton" X="72" Y="57" Width="56"
Height="17" Text="!(loc.WixUIYes)"> 
          <Publish Property="PROCEED" Value="1">1</Publish> 
          <Publish Event="EndDialog" Value="Return">1</Publish> 
        </Control> 
        <Control Id="Text" Type="Text" X="48" Y="15" Width="194"
Height="30"
NoPrefix="yes" Text="Hey Do u wish to proceed?" /> 
      </Dialog> 



Can anybody help me with a working code????

-- 
View this message in context:
http://n2.nabble.com/Wix-UI-navigation-Help-tp4796837p4816803.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------
------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

=======
Notice: This e-mail message, together with any attachments, contains
information of Symyx Technologies, Inc. or any of its affiliates or
subsidiaries that may be confidential, proprietary, copyrighted,
privileged and/or protected work product, and is meant solely for
the intended recipient. If you are not the intended recipient, and
have received this message in error, please contact the sender
immediately, permanently delete the original and any copies of this
email and any attachments thereto.

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to