H Henro Jan 19, 2004 #1 What is the event that is triggered when changing to a new record in the same form? Thanks for thinking Henro
What is the event that is triggered when changing to a new record in the same form? Thanks for thinking Henro
P Paul Overway Jan 19, 2004 #2 Form_Current. You'll also need to test whether you are in a new record using Me.NewRecord.
H Henro Jan 19, 2004 #3 test using Me.newrecord? Can you explain that? I just pretend to know something, in fact I know ... (excrement) ;-p Grtz Henro
test using Me.newrecord? Can you explain that? I just pretend to know something, in fact I know ... (excrement) ;-p Grtz Henro
P Paul Overway Jan 19, 2004 #4 Me.NewRecord returns a boolean indicating whether the current record is a new record. See help for details and examples.
Me.NewRecord returns a boolean indicating whether the current record is a new record. See help for details and examples.
A Albert D. Kallal Jan 19, 2004 #5 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.
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.