| re: Prompt User Response
For unlocking the controls you want to be entered in a certain order, you can use the event "OnLostFocus".
This way when a user tabs, or clicks off the control they just entered data into, within that event you would code your validation (checking to see if they entered data) then just simply make the next field in your order become unlocked or visible.
In order to code this in an organized fashion you could place all your validations and unlocking\hiding code in a single function that is called for each controls "OnLostFocus" event and pass that function the name of the control, and its number in the order (probably could just use the Tab Order).
The only question I guess is do you leave the previously filled out field(s) locked or hide them again? If you do (hide\lock them) it may be difficult to code in a way to go back and let them correct a previous entry.
|