Please keep wix-users on the thread so everyone can participate.

Brad Edwards wrote:

Thanks for the reply…it works great…however…In my CustomizeDlg.wxs which is part of the wixlib I have the next button value set to WixUI_CustomizeDlg_Next which is set to a specific dialog.  If the feature that I need for that dialog is not selected then I want the WixUI_CustomizeDlg_Next to be set to another dialog.  So in essence I’m wanting to change a Property based on  a condition.  Is that possible?  I don’t really want to change my CustomizeDlg.wxs file because I use that on other installation packages.  Is that the only way I can do it?

In WiX v2, you can use custom actions or control events to set the value of the properties WixUI uses for the Back and Next button navigation. In WiX v3, you can publish "floating" control events instead, which is easier because you don't have to modify each the dialogs that are affected, just copy the set fragment and change the Publish elements.

Also on a whole nother topic,  I have a dialog box where a user will need to enter a path to an exiting application.  When the user clicks on the Next button I need it fire off a custom action (_vbscript_) using that path they just entered.  I tried using the InstallUISequence to fire the custom action After the Dialog, but that didn’t seem to work.  Any suggestions?  Thanks for your time Bob.

It depends on what the custom action does. Machine changes shouldn't be made from the UI; instead, the UI should gather the needed data and the CA scheduled appropriate in the execute sequence.

What does your CA do? Maybe there's another way of doing it.

-- 
sig://boB
http://bobs.org


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to