So sorry that SQL-Server doesn't have a front-end. FWIW, the bugs occur in
VBA not Access and do so no matter whether the data engine is either Jet or
SQL-Server.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
<(E-Mail Removed)> wrote in message
news:d2302e34-958e-48ba-8be9-(E-Mail Removed)...
Arvin;
So sorry that your database access library makes you explicitly close
all your variables.
This is a horrible horrible Jet bug and most people-- when they see
something like this-- they move to a real platform like SQL Server
-Aaron
On Mar 22, 6:19 pm, "Arvin Meyer MVP" <arv...@mvps.invalid> wrote:
> 1. Do you have Compact On Close turned on? If there's an error, it may
> stop
> your closing.
>
> 2. Do you have a Boolean control with code like:
>
> If Me.chkWhatever Then
>
> There is a bug in VBA that can hang Access. Change your code to:
>
> If Me.chkWhatever = True Then
>
> 3. Do you have any recordsets that haven't been explicitly closed? Make
> sure
> that your exit routine closes all the objects that you open (as opposed to
> object used by the application)
> --
> Arvin Meyer, MCP,
> MVPhttp://www.datastrat.comhttp://www.mvps.org/accesshttp://www.accessmvp.com
>
> "Gee" <G...@discussions.microsoft.com> wrote in message
>
> news
70B3C70-7CC9-4467-A4B4-(E-Mail Removed)...
>
>
>
> >I have and '03 Database on a server with the Back End in a folder on the
> >same
> > server.
>
> > My problem is that the "Lock" will not always disengage. I go in to make
> > changes in the forms and it tells me that it is locked because someone
> > is
> > using it, but they're not. I disabled the upper right "x" to close the
> > database so they could only use an Exit button, but that didn't work.
>
> > What can I do to fix this? The big guys are getting tired of having to
> > go
> > in and clear it so I can work on it.
>
> > Thank you in advance for any help.
> > G- Hide quoted text -
>
> - Show quoted text -