I splict my database and it became so slow, I thought splitting it made it
more faster, any suggestions?
Well, some parts might run better, as the forms, code etc now resides on
your pc. However, now that 'connection' exists between the front end file
(on your computer) and the back end file (in that shared folder), then
sometimes there is a BIG delay as the connection occurs.
To remove, or get rid of this delay, try keeping a persistent connection.
This simply means at program startup in the FE, you open a table in the back
end, and KEEP THIS table open. In fact, you can just open a table, and them
minimize it to 'test' this trick. Now, with that table minimized, try
running your application, and you will see speed has returned to un-split
levels.
This trick, and a few others can be found at:
http://www.granite.ab.ca/access/performancefaq.htm
By keeping the back end opened at all times, the re-connection dealy is
removed.