Thank you, Peter!

> Properties changed in the UI must be public properties, which means that
> their names must be all in upper-case.
> http://msdn.microsoft.com/en-us/library/aa367437%28v=vs.85%29.aspx
>
> Also, to enable a property to be transferred from the UI sequence to the
> execute sequence, it must be marked "secure" by adding Secure="yes" to the
> property element. (Secure properties must also be public properties).
>   
It does work when I've set the property "secure" keyword to "yes".

However, what I must do when a property initializes through the 
"SetProperty" tag, as shown below?

------------------------------------ Code example 
------------------------------------

    <Property Id='A_PROPERTY'> 1 </Property>
    <!-- Condition initialization -->
    <SetProperty Id='USE_AUTH_CHECKBOX_VALUE' Value='1'
                 After='FindRelatedProducts'> A_PROPERTY = 1 </SetProperty>
...
        <Control Id="UseAuthCheckBox" Type="CheckBox" X="25" Y="55"
                 Width="300" Height="15" Property="USE_AUTH_CHECKBOX_VALUE"
                 CheckBoxValue="1" Text="Use auth"/>
...

------------------------------------ Code example 
------------------------------------

Is there another way to predefine "UseAuthCheckBox" state conditionally?

Thank You!

-- 
Best Regards,
Yuri Sevastyanov,
TightVNC Team


------------------------------------------------------------------------------
BlackBerry&reg; DevCon Americas, Oct. 18-20, San Francisco, CA
Learn about the latest advances in developing for the 
BlackBerry&reg; mobile platform with sessions, labs & more.
See new tools and technologies. Register for BlackBerry&reg; DevCon today!
http://p.sf.net/sfu/rim-devcon-copy1 
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to