Hide text fields on checkbox set in WiX

Can I hide text fields in a checkbox set in WiX?

+5
source share
1 answer

Thanks for your comments, the first comment helped me. This is done as follows:

<Control Id="LoginTextBox" Type="Edit" Text="CM2" Height="17" Width="200" X="150" Y="198" Property="Login">
<Condition Action="hide" >CreateDBUsers&lt;&gt;1</Condition>
<Condition Action="show" >CreateDBUsers=1</Condition>
</Control>
+11
source

All Articles