Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is there a way to check to see if you are closing the form?

Status
Not open for further replies.

mbrent

Programmer
Joined
Dec 18, 2001
Messages
20
Location
US
Is there a way to check to see if you are closing the form before firing a trigger? In my form I fire a trigger to make sure all the required fields have been entered. If for some reason, the user decides they don't need this form and would just like to close it, I don't want the trigger to fire. I just want it to close.

Thanks!
 
use clear_block(no_validate) or clear_form(no_validate)
before exit_form
 
...or even exit_form(no_validate);
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top