[WiX-users] Making Edit Controls required on dialog

2007-04-10 Thread David Allen
I am trying to come up with a way to require edit controls on a dialog to be required before allowing user to click on the next button and move to the next dialog. Anyone have a way of doing this? Thanks.

Re: [WiX-users] Making Edit Controls required on dialog

2007-04-10 Thread Stefan Pavlik
Hi,... The Button controls can have conditions such as disable/ enable/ hide / show. Such condition should use the property from the Edit control. e.g.: Control Id=Cancel Type=PushButton ... Condition Action=disable![CDATA[PROPERTY = 0]]/Condition Condition