Hello,
I have a form with several pages. Each page has some fields that need to be validated. I know I can validate controls by setting the "onvalidate" for each of them. But I don't want to do that. I want the user to be able to flip through pages back and forth and at the end when the OK is hit, I validate my form. Obviously I can't use "onok" because the form will be closed no matter what.
This is possible for cancel button, where I can use "onquerycancel" for that purpose.
Is there some way that I can get the something like "onqueryok" event? Or at list not validate the pages when they lose focus?
Thank you