Hi Steven,
I have a radio button group with 2 radio button(LIVE and DEMO)
Based on the user selection of the type of installation my Property 
DATABASE_NAME value should change accordingly

*I have created 2 properties*
     <Property Id="INSTALL_VERSION" Secure="yes" Value="1"/>
     <Property Id="DATABASE_NAME" Secure="yes" Value ="LIVE"/>
*I have placed the control**with the below code*
             <Control Id="DatabaseLabel" Type="Text" Height="20" 
Width="180" X="20" Y="181" Text="(Installation Type)" Transparent="yes" 
NoPrefix="yes"/>
           <Control Id="VersionType" Type="RadioButtonGroup" Height="40" 
Width="340" X="20" Y="190"
                   Property="INSTALL_VERSION" TabSkip="no" HasBorder ="yes">
             <RadioButtonGroup Property="INSTALL_VERSION">
               <RadioButton Value="1" X="5" Y="6" Width="300" 
Height="15" Text="LIVE" />
               <RadioButton Value="0" X="5" Y="21" Width="300" 
Height="15" Text="DEMO" />
             </RadioButtonGroup>
             <Publish Property ="DATABASE_NAME"  Value="LIVE" 
Order="1"><![CDATA[INSTALL_VERSION = "1"]]></Publish>
             <Publish Property ="DATABASE_NAME"  Value="DEMO" 
Order="1"><![CDATA[INSTALL_VERSION = "0"]]></Publish>
           </Control>

But when i check the value of the Property DATABASE_NAME its always LIVE 
but the Property INSTALL_VERSION changes according to user selection


Please let me know the correct approach

Thanks and Regards
Ravi
------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to