Record Navigation to New Record Problem

  • Thread starter Thread starter David C. Holley
  • Start date Start date
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?
 
David,

In your form's On Current event:

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

HTH,
Nikos
 
Back
Top