Hopefully your application is split into a front-end (containing the
queries, forms, reports, macros and modules), linked to a back-end
(containing the tables and relations). Only the back-end should be on the
server: every user should have his/her own copy of the front-end, ideally on
his/her hard drive. If that's not the way your application is, it should be.
--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
"raja07" <raj...@discussions.microsoft.com> wrote in message
news:7A9A056C-8878-4928...@microsoft.com...
In addition to what Doug said: you can write some code in the timer
event of a (potentially hidden) form to once a minute inspect a value
in some table. If that value indicates "Shut Down", it will do so. Of
course you'll want to be graceful about that.
-Tom.