RecordExit event

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

I am trying to check to make sure a value is entered for a
text box for the current record before the user moves to
the next record. It is a continuos form.

So I am trying to use the OnRecordExit property for a form
but it is not listed as one of the properties for a form.
How do I invoke this event? I am using Access 2002.
 
Tom said:
I am trying to check to make sure a value is entered for a
text box for the current record before the user moves to
the next record. It is a continuos form.

So I am trying to use the OnRecordExit property for a form
but it is not listed as one of the properties for a form.
How do I invoke this event? I am using Access 2002.


I thought that event was removed in the released version??

Regardless of what I think, you should use the form's
BeforeUpdate event to perform validation type operations.
 
Marshall Barton said:
I thought that event was removed in the released version??

It was. Sorry, Tom, no RecordExit event, despite what the help file
says.
Regardless of what I think, you should use the form's
BeforeUpdate event to perform validation type operations.

I agree.
 
Back
Top