Forum Discussion
RM-DT
Sep 03, 2026Occasional Reader
Inconsistent behaviour of AccessRuntime and Access (Developer Version) - Office 365
I am using Access Version 2608 (Build 20326.20132) and I am having big problems because of a differnt behaviour of Runtime and Full (same version). When setting a short timer (for initialisation / 1...
HeinziAT
Sep 03, 2026Iron Contributor
Cannot reproduce. This is what I tried: Simple form with one label (Bezeichnungsfeld0) initialized to "Waiting..." and the following events:
Private Sub Form_Load()
Me.TimerInterval = 1
End Sub
Private Sub Form_Timer()
Me.Bezeichnungsfeld0.Caption = "Done: " & SysCmd(acSysCmdGetFullVersion)
Me.TimerInterval = 0
End SubWorks fine in 20326.20132 (a) full Office, (b) full Office with /runtime switch, and (c) AccessRuntime installed only.
Do you have a minimal example that reliably reproduces the issue?