Should I decompile?

A

alex

I’ve been trying to speed up the opening of my front-end mde by
searching this group and various other places (including Tony’s Access
Tips—which is quite helpful).

One suggestion was to decompile the source code.

Let me explain what’s going on:

I have a split Access ’03 application. The mde is about 800kb and the
mdb is about 10mb. Each user opens his/her own mde file.

When the *first* user opens the database, the switchboard loads almost
instantly (2 seconds). When the second or *subsequent* user opens the
database (when the ldb file is visible) the switchboard will load in
about 5 seconds.

In this application, the users do write to the mdb, but will never
work on the same record (each user only has access to (and creates)
individual records).

Knowing this, should I decompile? My mde doesn’t seem big enough to
warrant doing so.

Thanks,
alex
 
L

Lynn Trapp

Alex,
My first thought is that your users are a bit "spoiled," because I can't
imagine anyone being seriously concerned with a form taking 3 more seconds to
open, but that's just me.

Now, to the real issue. Does the Switchboard Items table reside in the back
end or the front end? If it is in the back end, you might consider moving a
copy of it to the mde file.
 
A

alex

Alex,
My first thought is that your users are a bit "spoiled," because I can't
imagine anyone being seriously concerned with a form taking 3 more seconds to
open, but that's just me.

Now, to the real issue. Does the Switchboard Items table reside in the back
end or the front end? If it is in the back end, you might consider movinga
copy of it to the mde file.

--
Lynn Trapp












- Show quoted text -

Lynn, that's a good point.
When the switchboard opens, it does some UserID verification from a
table(s) in the back-end.

Are you suggesting keeping a copy of the table in the mde or copying
the table when the form loads?
 
L

Lynn Trapp

It all depends on how often you need to update the switchboard. If it stays
pretty static, then justput a copy of the table in the mde and let it go. If
you have to change the switchboard up any, do it on your development copy and
redistribute a new mde.
 

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

Similar Threads

Decompile crashes the database 13
2 questions about decompile 10
Cannot create MDE files 6
mdb looks and acts like mde 3
Hide .ldb 3
Uncompiled Form/Report Module after LoadFromText 0
decompile questions 2
Shift ByPass 4

Top