A family of Microsoft relational database management systems designed for ease of use.
I did some additional testing;
Version: Access 2016 - 16.0.6769.2017
- create a simple Report
- create a Form - set Timer Intervall 600000
- Set Event on Timer:
Private Sub Form_Timer()
Dim strFile As String
strFile = "C:\Temp\A2016PDF-test\PDFs" & Format(Now, "hhmmss") & ".pdf"
DoCmd.OutputTo acOutputReport, "Areport", acFormatPDF, strFile, True, , , acExportQualityPrint
End Sub
Save as test.accdb
and compile as test.accde
open test.accdb
> after 10 minutes PDF is created
open test.accde
> after 10 minutes PDF is created
rename test.accdb to test.accdr
> after 10 minutes Access crashes
rename test.accde to test.accdr
> after 10 minutes Access crashes
Do the same with timerintervall 15000
> every 15 seconds a PDF is created without Problems
So the Problem seems to be, if Access idles for several minutes.