Decompile and recompile the db. Some people have that issue for some strange reason. I never did.
This is the code
Code:
Public Sub OneTimeProcessing()
10 On Error GoTo Err_Handler
20 If Not GetSystemSetting(ssFirstTimeRun) Then
30 SysCmd acSysCmdSetStatus, "One-Time Processing. Please stand by."
40 DoCmd.Hourglass True
50 SetDatesToCurrent 'So new instance is working with current data.
60 SetCtrlCurrencyFormat
70 AddDataMacros
80 SaveSystemSetting ssFirstTimeRun, -1 '-1 is better than True in international scenarios.
90 SysCmd acSysCmdClearStatus
100 End If
Exit_Handler:
110 DoCmd.Hourglass False
120 Exit Sub
Err_Handler:
130 clsErrorHandler.HandleError "modGlobal", "OneTimeProcessing"
140 Resume Exit_Handler
150 Resume
End Sub
It is in ModGlobal
https://www.access-programmers.co.uk...2#post-1959440