M
matt weyland
just create a sub that once the counter has reached a
particular time of inactivity close the DB
public sub ShutDown()
msgbox "App shutting down"
timer
docmd.quit
end sub
on the sub for the timer
if timer >= x minutes call shutdown()
That should do it
particular time of inactivity close the DB
public sub ShutDown()
msgbox "App shutting down"
timer
docmd.quit
end sub
on the sub for the timer
if timer >= x minutes call shutdown()
That should do it