S Sandra Daigle Oct 31, 2003 #2 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
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
A Allen Browne Oct 31, 2003 #3 The form has a NewRecord property. Example: If Me.NewRecord Then MsgBox "You can't do that!" end If