How are you shutting down the application? If you could post the code
here, we'll be able to direct you rather than misdirect you a little better.
<g>
--
Jim Carlock
http://www.microcosmotalk.com/
Post replies to the newsgroup.
I have an Access 97 application that runs marvelously. I have converted it
to Access 2002, and attempting to change this to a Runtime application,
where my users don't have to have Access 2002 installed on their machines.
When testing the runtime application, when I exit Access it appears to close
properly. However, when I look at the Task Manager Msaccess is still
running. If I open and exit the application multiply times, Msaccess will
be listed several time on the Task Manager.
I am trying to find out why this is happening, as I don't need anymore Tasks
running on some of these machines.
----- Jim Carlock wrote: -----
Have you created an object that isn't released inside of
Access? Not sure what you mean by Access 2002 runtime.
I'm assuming that you mean that Access is set up to run
something automatically when a particular file is opened.
If you're creating a lot of forms, you might want to try to
loop through the forms and close each one... I know this is
possible in a VB application, and I'm pretty sure it's doable
in an Access application as well.
Dim fld As Form
For Each frm in Forms
Unload frm
Set frm = Nothing
Next frm
Will need a little more information to be able to be more
specific.
--
Jim Carlock
http://www.microcosmotalk.com/
Post replies to the newsgroup.
I am a beginner at Runtime applications. I've been able
to figure out and fix all my problems to this point. Now
when I exit my ACCESS application with a button on my
menu screen, when I look at the Task Manager it shows
msaccess is still running on the machine. If I open my
application again and exit, it then shows msaccess
running twice.
What is causing this?
Thanks in advance for any help.