[WiX-users] Bug? Disable a control because another control is empty, enter text control is not enabled

2012-10-04 Thread StevenOgilvie
Hi all, I created a custom dialog... I have a button control that is disabled/enabled whether or not some text box controls are empty or have some text in them: Condition Action=disable/Condition Condition Action=enable/Condition Here is one of my text box controls: Control

Re: [WiX-users] Bug? Disable a control because another control is empty, enter text control is not enabled

2012-10-04 Thread StevenOgilvie
sigh my original msg is missing text: -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Bug-Disable-a-control-because-another-control-is-empty-enter-text-control-is-not-enabled-tp7581117p7581118.html Sent from the wix-users

Re: [WiX-users] Bug? Disable a control because another control is empty, enter text control is not enabled

2012-10-04 Thread Steven Ogilvie
Sorry, lets try that again: Control Id=SQLServerTestConnectionButton Type=PushButton Height=18 Width=138 X=28 Y=209 Default=no Text=Test connection... TabSkip=no Condition Action=disable![CDATA[(DATABASE_WINDOWSAUTHENTICATION = 1 AND DATABASE_SERVERNAME = OR DATABASE_RNAME = ) OR

Re: [WiX-users] Bug? Disable a control because another control is empty, enter text control is not enabled

2012-10-04 Thread Hoover, Jacob
From the MSI SDK documentation on TextBox controls, The property associated with the Edit control is only set when the control loses focus. Therefore you must tab from the control or select a different control for the property to be updated. -Original Message- From: Steven Ogilvie