Thanks.
Yes, I'm using WixUI. v2. But as if properties work.
 
1<Property Id="ARPNOMODIFY" Value="1" />
2<Property Id="WixUI_WelcomeDlg_Next" Value="myDlg" />
 
3<Property Id="UI_myDlg_Back" Value="WelcomeDlg" />
4<Property Id="UI_myDlg_Next" Value="VerifyReadyDlg" />
 

5<Property Id="WixUI_VerifyReadyDlg_BackRepair" Value="MaintenanceTypeDlg" />
6<Property Id="WixUI_VerifyReadyDlg_BackRemove" Value="MaintenanceTypeDlg" />
7<Property Id="WixUI_VerifyReadyDlg_BackInstallDir" Value="myDlg" />
8<Property Id="WixUI_MaintenanceWelcomeDlg_Next" Value="MaintenanceTypeDlg" />
9<Property Id="WixUI_MaintenanceTypeDlg_Repair" Value="VerifyReadyDlg" />
10<Property Id="WixUI_MaintenanceTypeDlg_Remove" Value="VerifyReadyDlg" />
11<Property Id="WixUI_MaintenanceTypeDlg_Back" Value="MaintenanceWelcomeDlg" />
 
12<Dialog Id="myDlg" Width="370" Height="270" Title="[ProductName] Setup">
13<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" 
Text="&amp;Back" >
14<Publish Event="NewDialog" Value="[UI_myDlg_Back]">1</Publish>
15</Control>
16<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" 
Text="&amp;Next" >
17<Publish Event="NewDialog" Value="[UI_myDlg_Next]" />
18</Control>
19<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" 
Cancel="yes" Text="Cancel">
20<Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
21</Control>
22</Dialog>
 
line 3~line 11 do work except line 7. i.e. i can not move back to myDlg from 
VerifyReadyDlg through the Back button on the VerifyReadyDlg. (but i can move 
back to WelcomeDlg from myDlg through the Back button on myDlg).
 


Date: Sat, 29 Mar 2008 13:26:29 -0700From: [EMAIL PROTECTED]: [EMAIL 
PROTECTED]: [EMAIL PROTECTED]; [EMAIL PROTECTED]: Re: [WiX-users] How to 
realize the Back button in VerifyReadyDlg?
Xu nanxuan wrote: 


Thanks. In fact, the "Property" does work, Things are like the following:if i 
want to the following sequence: myDlg->VerifyReadyDlg, the following things 
work: <Dialog Id="myDlg"...>  <Control Id="nextButton" Type="PushButton"...>    
<Publish event="NewDialog", value="[myValue]"> <Property Id = "myValue" 
Value="VerifyReadyDlg"> but i don't know why i can't make the back button of 
VerifyReadyDlg run through the same method.You need to provide more information 
before anyone can help. Are you using WixUI? If so, which version? WixUI v2 
used properties but WixUI v3 uses bind-time WiX variables, so properties don't 
work. See http://www.joyofsetup.com/2008/01/02/wixui-extensibility/ and 
http://www.wixwiki.com/index.php?title=WixUI_Custom.-- 
sig://boB
http://joyofsetup.com/
_________________________________________________________________
Explore the seven wonders of the world
http://search.msn.com/results.aspx?q=7+wonders+world&mkt=en-US&form=QBRE
-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to