Spelthorne1
Registered User.
- Local time
- Today, 05:48
- Joined
- Feb 17, 2004
- Messages
- 20
I am having problems with one computer using the front end of our database. This happens all the time and the coding on this computer and the others are all the same.
At 12pm, 3pm and 5pm we want the database to update itself.
At 3 the form Timeupdateinfo appears with the current time and action - this form has a timer event of 5 seconds then it closes. The query is then hopefully actioned.
Unfortunatly, on this certain computer, the time comes and go's without anything happening.
We're completely confused over why this happens.
At 12pm, 3pm and 5pm we want the database to update itself.
Code:
If Time = "15:00:00" Then
DoCmd.OpenForm "Timeupdateinfo", acNormal
[Forms]![Timeupdateinfo].lbltime.Caption = Time
[Forms]![Timeupdateinfo].lblaction.Caption = "Autoupdate commencing in 3 seconds."
DoCmd.SetWarnings False
DoCmd.OpenQuery "UserDailyDCUpdate", acViewNormal, acReadOnly
DoCmd.SetWarnings True
End If
At 3 the form Timeupdateinfo appears with the current time and action - this form has a timer event of 5 seconds then it closes. The query is then hopefully actioned.
Unfortunatly, on this certain computer, the time comes and go's without anything happening.
We're completely confused over why this happens.