Yes, the tables are on a network drive. Windows XP SP2 with Access 2003.
Why do the tables affect simply selecting or dragging a field in a form
design?
Because you are on a network, and ms-access then opens, and checks the field
names of the table (and, gazillion other things) during design time.
(how could code compile that has a me.CompanyName if the field does not
exists in the table? ).
So, design time this will cause network traffic.
Would you recommend importing the tables until the form design is complete?
It's so tediously slow, I don't think I can complete the form design at
this pace
No, if you read that article, the KEY solution to your problem is to try the
persistent connection trick. The huge "delay" in the time taken for
ms-access to "re-build" the connection to the back end database. So, what we
do is FORCE the connection to remain open at all time.
Try the following trick:
Open your front end. Now, open any table that is linked to the back end.
Now, minimize that table. Now, start your design mode session...notice how
the huge delay is gone?
Remember, that "same" delay will occur when your application runs, so, you
would do VERY WELL to ALWAYS startup a persistent connection in your startup
form/code......(or, at the very least open some form attached to the back
end table..and minimize it).
Try the above...post back so we can all learn if my suggestion was
useful...or something of no use at all!!
Good luck...and do read through that list of things to check...(the
persisting connection trick likely will fix this problem...)..