I am using Access 97 on a Win XP platform. The following code is attached to the On Entry event. I have tried this in Access 2003 and it works but not in 97
Private Sub s_addcomments_E nter()
Dim varAA As String
varAA = Format(Now(), "dd mmm yyyy at hh:mm:ss AMPM")
Debug.Print varAA
End Sub
If I comment out the Format line there is no error. I do not understand this.
Thanks.
Private Sub s_addcomments_E nter()
Dim varAA As String
varAA = Format(Now(), "dd mmm yyyy at hh:mm:ss AMPM")
Debug.Print varAA
End Sub
If I comment out the Format line there is no error. I do not understand this.
Thanks.
Comment