In a split form in my db when clicking any button I keep getting the 424 runtime error and can't figure out why. The split form was copied and pasted from another one so not sure if that is the issue, though I have copied and pasted others with no issue.
The debugger shows the below with the "MsgBox Error.Description" statement highlighted in yellow...
I can't figure this out so if anyone can help please?
The debugger shows the below with the "MsgBox Error.Description" statement highlighted in yellow...
Code:
Private Sub Command3204_Click()
On Error GoTo ErrorAddToday
Me.RefDate1 = Date
ExitAddToday:
Exit Sub
ErrorAddToday:
MsgBox Error.Description
Resume ExitAddToday
End Sub
I can't figure this out so if anyone can help please?