Record Navigation to New Record Problem

D

David C. Holley

I need to change which controls are displayed if the user is on a new
record. I'm trying to use the isNewRecord() function to handle this,
however the function is not detecting that the user has moved to a new
record when I click on the NEW RECORD navigation button. Ideas?
 
N

Nikos Yannacopoulos

David,

In your form's On Current event:

If Me.NewRecord Then
'do something
Else
'do something else
End If

HTH,
Nikos
 
Top