matthewnsarah07
Registered User.
- Local time
- Yesterday, 17:45
- Joined
- Feb 19, 2008
- Messages
- 192
I have got a form as part of a database which I use as a pop up upon loading the database to warn users of upcoming changes to the system etc.
I use this code on the forms timer event to close it and open the main screen after 10 secs.
However I want a label box on the update form to flash "Update" going on/off each second using:
As the events trigger as seperate times, how can i use them both on the same form?
Thanks for your help
I use this code on the forms timer event to close it and open the main screen after 10 secs.
Code:
Private Sub Form_Timer()
'On the forms timer event close the start-up form
DoCmd.Close acForm, "frmUpdate"
'Open up the main switchboard form when the start-up form closes
DoCmd.OpenForm "frmLeaveRequest"
End Sub
However I want a label box on the update form to flash "Update" going on/off each second using:
Code:
Me!UpdateFlash.Visible = Not (UpdateFlash.Visible)
As the events trigger as seperate times, how can i use them both on the same form?
Thanks for your help