M
martha.dempsey
ON Form_LOAD I have the following:
NewRecordMark Me
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
I get to the next record but all I get is record 2 and the
new record * goes off. How can I get to add 3,4,5...?
thanks!
martha
NewRecordMark Me
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
I get to the next record but all I get is record 2 and the
new record * goes off. How can I get to add 3,4,5...?
thanks!
martha