On Close Message\Cancel Option

  • Thread starter AccessQuestions via AccessMonster.com
  • Start date
A

AccessQuestions via AccessMonster.com

I am using a form and have a message on the on the close event.

When the press the close button, a message pops up and asks, did you remember
to do....? The problem is that if they want to cancel the close command they
can't; the form just closes.

What I want to happen is if they did not do it I want them to beable to
choose cancel to the close event and remain in the form to do what they
forgot to do. What is the best way for this to be done.
 
C

Carl Rapson

Unfortunately, by the time the Close event fires, it's too late to cancel
it. You might try using the form's Unload event instead; it has a Cancel
option.

Carl Rapson
 
Top