Here is the scenario:
I have a Database Configuration Dialog with two Edit Boxes, one for Password and one for PasswordCompare. When the values match (Password = PasswordCompare) I want to enable the "Next" button on the Dialog.
This is sort of working by setting Control Conditions on the "Next" button on the Dialog, BUT the user needs to tab out of the PasswordCompare Edit Box before those conditions are evaluated. This is being regarded as a bug by my QA, because the button does not get enabled when the passwords match.
What I need is a way to react to Keypress events on the Password Edit Box and the PasswordCompare Edit Box, and use them to set the Enabled attribute on the "Next" button appropriately, before the Edit Box controls lose focus.
I've done some searching and come up empty on this. Any examples or direction would be greatly appreciated.
Thanks!
Bob