M
martha.dempsey
I am trying to create a new record and can't understand
why this code doesn't work. Can you tell me why this is
not working?
Private Sub Form_Current()
End Sub
Sub NewRecordMark(frm As Form)
Dim intnewrec As Integer
intnewrec = frm.NewRecord
If intnewrec = True Then
MsgBox "You're in a new record." _
& "@Do you want to add new data?" _
& "@If not, move to an existing record."
End If
End Sub
Thanks!
martha
why this code doesn't work. Can you tell me why this is
not working?
Private Sub Form_Current()
End Sub
Sub NewRecordMark(frm As Form)
Dim intnewrec As Integer
intnewrec = frm.NewRecord
If intnewrec = True Then
MsgBox "You're in a new record." _
& "@Do you want to add new data?" _
& "@If not, move to an existing record."
End If
End Sub
Thanks!
martha