Re: [WiX-users] Radio Button Both Evaluating to pass condition

2009-01-20 Thread Dylan Moline (Volt)
lto:a...@solarflare.com] Sent: Tuesday, January 20, 2009 5:38 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Radio Button Both Evaluating to pass condition Andrew Lee wrote: > Your condition of MUAccepted = "yes" OR "no" is always going to

Re: [WiX-users] Radio Button Both Evaluating to pass condition

2009-01-20 Thread Andrew Lee
Andrew Lee wrote: > Your condition of MUAccepted = "yes" OR "no" is always going to > evaluate as true. Try an enable condition and new dialog condition of: >MUAccepted = "yes" OR MUAccepted = "no" > or you might find it clearer to put: >(MUAccepted = "yes") OR (MUAccepted = "no") > > The

Re: [WiX-users] Radio Button Both Evaluating to pass condition

2009-01-20 Thread Andrew Lee
Dylan Moline (Volt) wrote: > Hey everyone, > > I am implementing a custom UI where I would like the user to either accept or > decline a radio button. I want the "next" button to be disabled until they > select EITHER option. I don't care if it is yes or no, I just want them to > make a decisio

[WiX-users] Radio Button Both Evaluating to pass condition

2009-01-19 Thread Dylan Moline (Volt)
Hey everyone, I am implementing a custom UI where I would like the user to either accept or decline a radio button. I want the "next" button to be disabled until they select EITHER option. I don't care if it is yes or no, I just want them to make a decision. Here is the snippet and I can't see