Inserting Custom Action between Dialogs (InstallUISequence) in WiX
I have two custom dialog boxes (plus the required ones ExitDlg , FatalErrorDlg , etc.), the first one sets a property using an Edit control and the second one shows this property using a Text control. Here is the meaningful code: <Dialog Id="DialogA" ...> <Control Id="ControlEdit" Type="Edit" Property="MY_PROPERTY" .../> <Control Id="ControlNext" Type="PushButton" ...> <Publish Event="EndDialog" Value="Return" /></Control> </Dialog> And then the second dialog: <Dialog Id="DialogB" ...> <Control Id="ControlText" Type="Text" Text="[MY_PROPERTY]" .../> <Control Id="ControlBack" Type="PushButton"