Question

Having an issue with a multiple condition statement such as:

<Condition Action="enable"><![CDATA[(WCF_USE_PROXY = 1 AND WCF_PROXY_URL <> "" AND WCF_PROXY_USERNAME <> "" AND WCF_PROXY_USERNAME <> "")OR WCF_USE_PROXY <> 1]]></Condition>
<Condition Action="disable"><![CDATA[WCF_USE_PROXY = 1 AND(ACTIVATIONPASSWORD = "" OR ACTIVATIONSERVICEURL = "" OR BASEADDRESSURL = "")]]></Condition>-->

For some reason if all my text boxes aren't empty it still doesn't enable, can someone point me at the probably easy fix!

Cheers, J

Was it helpful?

Solution

Windows Installer evaluates control conditions when another control takes focus. So if you are modifying an edit box value, that modification will update control conditions only after selecting another control.

Control conditions are not updated dynamically as you type.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top