cath_hopes
Registered User.
- Local time
- Today, 10:13
- Joined
- Oct 17, 2007
- Messages
- 52
Hi there!
The first line of this procedure (If Me.LastRcd = True Then) is producing a runtime error 438 - 'Object does not support this property or method'. What code should I be using instead?
Private Sub NextRcd_Click()
If Me.LastRcd = True Then
MsgBox "No further Booking/ Job records exist for this property."
Else
DoCmd.GoToRecord , , acNext
End If
End Sub
Many thanks in advance,
Catherine
The first line of this procedure (If Me.LastRcd = True Then) is producing a runtime error 438 - 'Object does not support this property or method'. What code should I be using instead?
Private Sub NextRcd_Click()
If Me.LastRcd = True Then
MsgBox "No further Booking/ Job records exist for this property."
Else
DoCmd.GoToRecord , , acNext
End If
End Sub
Many thanks in advance,
Catherine