Which event to use?

  • Thread starter Thread starter Henro
  • Start date Start date
H

Henro

What is the event that is triggered when changing to a new record in the
same form?

Thanks for thinking

Henro
 
Form_Current. You'll also need to test whether you are in a new record
using Me.NewRecord.
 
test using Me.newrecord? Can you explain that?


I just pretend to know something, in fact I know ... (excrement)
;-p

Grtz Henro
 
Me.NewRecord returns a boolean indicating whether the current record is a
new record. See help for details and examples.
 
Do you mean moving to a differnt reocrd, or do you mean adding a new
record?

Moving to a differnt reocrd, you can use

on current.

Adding a new reocrd, you can use on-insert.
 
Back
Top