I'm trying to write an update script to update missing values.
Function InsertAny()
MsgBox ("Hello")
callAgain
End Function
Function callAgain()
Dim alertTime As String
alertTime = Now + TimeValue("00:00:03")
Forms("HiddenForm1").OnTime alertTime, "InsertAny"
'Forms("HiddenForm1").TimerInterval = 3
End Function
However I keep getting :
Run-time error '2465': Application-defined or object-defined error.