Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I quit a mdb but access stay in the tasks

Status
Not open for further replies.

tsetse

Programmer
Sep 7, 2001
10
BE
Hello ,

Here is my problem:
i launch a mdb-application under access runtime. When i exit my application, the access window stay on the screen and Access stay on the tasks (see Ctrl-Alt-Del). It's a knowed bug.
Does anybody know how to avoid this problem and close the access windows properly?

Thanks a lot.

jeff

 

It sounds to me like you have some problems with bad coding, go through all your code and ensure that any recordset references are closed off.

"set recordset=nothing"

I had the same problem and this fixed it.
I am guessing Access 97 on Win95 ?

Cheers,

SunTsu
 
do that for any object you "Set" in your code, and also look for coding that "shortcuts" to the default, such as a Boolean variable which you test for True by saying

If blnIsSet then

change to

If blnIsSet = True Then

PaulF
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top