Shutdown after inactivity (create extra form?)

J

John J.

I'm trying to implement the automatic 'after inactivity' shutdown using the
code from: http://support.microsoft.com/?id=210297.

The first action that is described in the article is:
"1. Create a blank form that is not based on any table or query and name it
DetectIdleTime."

In my app I already have a main menu form which is always open and is not
based on any table or query. However, in the form's open, there's code that
opens a persistant connection (recordset variable) to a small backend table
as described in http://www.accessmvp.com/TWickerath/articles/multiuser.htm.

My question is, can I safely use my main menu form as the DetectIdleTime
form or should I make an extra new form?

Thanks,
John
 
D

Dirk Goldgar

John J. said:
I'm trying to implement the automatic 'after inactivity' shutdown using
the code from: http://support.microsoft.com/?id=210297.

The first action that is described in the article is:
"1. Create a blank form that is not based on any table or query and name
it DetectIdleTime."

In my app I already have a main menu form which is always open and is not
based on any table or query. However, in the form's open, there's code
that opens a persistant connection (recordset variable) to a small backend
table as described in
http://www.accessmvp.com/TWickerath/articles/multiuser.htm.

My question is, can I safely use my main menu form as the DetectIdleTime
form or should I make an extra new form?


Yes, you can use your existing form.
 
A

a a r o n _ k e m p f

this is not possible using Jet.

but if you use SQL Server, this is not a problem-- because you don't
have to kick people out of the back end so you can take a backup, or
run a script, etc
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top