Access ADP Crashing on Form.Requery and Form.Refresh

L

Louis Levine

I have an Access ADP. In order to search within it, I have 2 tables: One is
a table that holds all the relevant ClientIDs (zUser1) and the other is the
table with all the data (Clients). I've also created a view, vClients that
has all the fields that would ever be updated.

The recordsource for my form is set on load, and is always Select .... From
vClients INNER JOIN zUser1 on vClients.ClientID=zUser1.ClientID.

When I do a search, I clear out the zUser1 table, and repopulate it with the
new set of IDs. Then, I requery the form, which should work. The problem is
that it crashes after a few searches.

I was getting the same results (crash) when I was using a different method
for searching. Previously, I just updated the recordsource of the form with
the new search. But it was crashing there also.

It's never the same search that does it, it can happen right away, or take a
few searches to trigger the crash. But it's reasonably consistent.

This is happening with both Access XP and Access 2003. This is NOT happening
in Access 2000, which is what I developed it in.

Any help would be greatly appreciated. And I apologize for the cross-posting
on this.

-Louis Levine
 
S

Sylvain Lafontaine

By requering the form, do you mean posting the form back to the IIS server,
making an assignement to window.location or calling the requery method of
MSODSC control?

S. L.
 
L

Louis Levine

No, this is an Access database, and an Access form. I'm requerying the
Access form. There's no IIS server involved.
 
S

Sylvain Lafontaine

Oups! Sorry, I got confused again with these two abreviations ADP and DAP.

The description of what you are doing looks perfect to me, with nothing
suspicious. Maybe it's something that you make beetween two requeries, like
accessing a RecordsetClone or something like this. It is also possible
that's the view that gives Access an hiccup: you can try removing it or
using a stored procedure instead of your select query.

Have you checked the references?

Does the freezing happening after editing one or more records? If your form
is read-only, you can try to change the type of the Recorset from "Updatable
Snapshot" to "Snapshot".

S. L.
 
L

Louis Levine

Tried all that. Still no love.


Sylvain Lafontaine said:
Oups! Sorry, I got confused again with these two abreviations ADP and
DAP.

The description of what you are doing looks perfect to me, with nothing
suspicious. Maybe it's something that you make beetween two requeries,
like accessing a RecordsetClone or something like this. It is also
possible that's the view that gives Access an hiccup: you can try removing
it or using a stored procedure instead of your select query.

Have you checked the references?

Does the freezing happening after editing one or more records? If your
form is read-only, you can try to change the type of the Recorset from
"Updatable Snapshot" to "Snapshot".

S. L.
 

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