Вопрос

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

Это было полезно?

Решение

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.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top