Re: [WiX-users] CheckBox Value via Custom Action

2012-05-25 Thread Ravi Raj
Is there any update? On Sat, May 19, 2012 at 11:01 AM, Ravi Raj wrote: > Any suggestions??? > > > On Tue, May 15, 2012 at 11:49 AM, Ravi Raj wrote: > >> I have done this thing: >> >> > Id="CA_SetProperty_EV" Property="ENABLEVIRTUALIZATION" Value="0" >> Execute="firstSequence" /> >>> Before="

Re: [WiX-users] CheckBox Value via Custom Action

2012-05-18 Thread Ravi Raj
Any suggestions??? On Tue, May 15, 2012 at 11:49 AM, Ravi Raj wrote: > I have done this thing: > > Id="CA_SetProperty_EV" Property="ENABLEVIRTUALIZATION" Value="0" > Execute="firstSequence" /> > Before="AppSearch">NOT Installed AND NOT > OLDERVERSIONDETECTED > NOT Installed AND NOT > OL

Re: [WiX-users] CheckBox Value via Custom Action

2012-05-14 Thread Ravi Raj
I have done this thing: NOT Installed AND NOT OLDERVERSIONDETECTED NOT Installed AND NOT OLDERVERSIONDETECTED Now when chkbox is disabled, the registry stored value=0 (which is correct). Again, when I click Verify button (some action performed) and chkbox gets enabled (and its checked by def

[WiX-users] CheckBox Value via Custom Action

2012-05-14 Thread Ravi Raj
I need to perform certain action on my checkbox. At the start if the installation the chkbox is disabled. There is a button to call a custom action and verify certain things and assign a value to a variable. This variable will decide whether to enable chkbox or not. I have implemented till this par