New Record Check

  • Thread starter Thread starter Bryan Hughes
  • Start date Start date
It depends - in a form you can check the NewRecord property which will be
true until the record is initially saved.

if me.newrecord then
msgbox "It is new!"
endif
 
The form has a NewRecord property.

Example:
If Me.NewRecord Then
MsgBox "You can't do that!"
end If
 
Back
Top