cancel exit

  • Thread starter Thread starter maple via AccessMonster.com
  • Start date Start date
M

maple via AccessMonster.com

is there another way to stop a user exiting a form other than cancel = true?
maybe something on the lines of newrecord = false/ me.form.onexit = false?
any ideas?
 
What are you actually trying to do here?

If you are trying to prevent the user saving a bad record, cancelling
Form_BeforeUpdate is the only solution.

If you don't care about checking the data, you just don't want them to be
able to close the form, cancelling Form_Unload is the go.

The form's Close event is too late.

Forms don't have an Exit event.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top