Am I at a "New Record?" How to tell?

  • Thread starter Thread starter Dennis
  • Start date Start date
D

Dennis

In Access2003, I need to know if a user is in the process of adding a NEW
record as opposed to modifying a current one. The latter I have covered via
DIRTY, but I really need to know if it's a new rec.

Can someone please throw out a few ideas?

Thanks!!
 
In Access2003, I need to know if a user is in the process of adding a NEW
record as opposed to modifying a current one. The latter I have covered via
DIRTY, but I really need to know if it's a new rec.

Can someone please throw out a few ideas?

Thanks!!

Code the Form's Current event:
If Me.NewRecord = true then
' It's a new record
' Do whatever you need here
Else
' It's not a new record
End If
 
Thanks! That did it.

Dennis


fredg said:
Code the Form's Current event:
If Me.NewRecord = true then
' It's a new record
' Do whatever you need here
Else
' It's not a new record
End If
 
Back
Top