g.mcavoy123
Registered User.
- Local time
- Today, 13:07
- Joined
- Dec 8, 2015
- Messages
- 32
Hi my teacher at college said that I am not allowed to use the built in timer function on forms. This means I must code it myself, after looking online there doesn't seem to be a good solution to my problem. I will post the code below what was converted and see if you can tell me how I could adapt the code to make it my own rather than computer generated. Thanks
Code:
'------------------------------------------------------------
' Form_Timer
'
'------------------------------------------------------------
Private Sub Form_Timer()
On Error GoTo Form_Timer_Err
DoCmd.RunMacro "closeSplashOpenMenuAndStock"
Form_Timer_Exit:
Exit Sub
Form_Timer_Err:
MsgBox Error$
Resume Form_Timer_Exit
End Sub