Hi,
I am using MS Access 2010.
I looked up how to set a timer. I want to set a timer for form inactivity, but before it even gets to my code it comes up with
that Form_Timer() function is not define.
what so I have to do to define this?
Thank you
My code:
I am using MS Access 2010.
I looked up how to set a timer. I want to set a timer for form inactivity, but before it even gets to my code it comes up with
that Form_Timer() function is not define.
what so I have to do to define this?
Thank you
My code:
Code:
Private Sub Form_Timer()
If Forms!frmMain!ynActive Then
Forms!frmMain!ynActive = False
Esle
DoCmd.Close acForm, frmMain, acSaveNo
End If