Re: [WiX-users] Inserting a dialog when user click on the Advanced button

2013-11-07 Thread Pierre-Alain GALTIER
Hello, I used the standard AdvancedWelcomeEulaDlg (I didn't create my own based on the original provided by Outcurve Foundation) There is no Publish Element in the Advanced control in the original dialog Control Id=Advanced Type=PushButton X=156 Y=243 Width=56 Height=17

Re: [WiX-users] Inserting a dialog when user click on the Advanced button

2013-11-07 Thread Pierre-Alain GALTIER
Nick, you were right...and I was looking in the wrong file :( Reading the WixUI_adanced.wxs (and not the - wrong - AdvancedWelcomeEulaDlg.wxs) file, I've found Publish action with Order param. So I've update my file as follow: Publish Dialog=AdvancedWelcomeEulaDlg Control=Advanced

[WiX-users] Inserting a dialog when user click on the Advanced button

2013-11-06 Thread Pierre-Alain GALTIER
Hello, I have a custom dialog box that I’ve successfully inserted between the LicenseAgreementDlg and InstallDirDlg using WixUI_InstallDir template. Now I want to use the WixUI_Advanced template and insert the same dialogbox when user press the “Advanced” or “Install” buttons. … and I failed 

Re: [WiX-users] Inserting a dialog when user click on the Advanced button [P]

2013-11-06 Thread Steven Ogilvie
@lists.sourceforge.net Subject: [WiX-users] Inserting a dialog when user click on the Advanced button Hello, I have a custom dialog box that I’ve successfully inserted between the LicenseAgreementDlg and InstallDirDlg using WixUI_InstallDir template. Now I want to use the WixUI_Advanced template and insert the same

Re: [WiX-users] Inserting a dialog when user click on the Advanced button [P]

2013-11-06 Thread Pierre-Alain GALTIER
-13 8:58 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Inserting a dialog when user click on the Advanced button Hello, I have a custom dialog box that I’ve successfully inserted between the LicenseAgreementDlg and InstallDirDlg using WixUI_InstallDir template. Now I want to use

Re: [WiX-users] Inserting a dialog when user click on the Advanced button

2013-11-06 Thread Nick Ramirez
Things to try: 1. Did you replace/remove the old Publish elements that were directing the user elsewhere? Looks like in the WixUI_Advanced.wxs, there are there Publish elements, each taking the user somewhere else depending on a condition. 2. Does your Publish element have an Order property? If