ITS said:
I am working on Access 2000 and it is up to 1.99 GB ...Do you know
the solution - I need to keep building this database- do I make a new
table- then how do I link the tables together so they print in order-
will I need to break up the catagories into seperate tables so when I
make additions they are in order. I hope you can help- if it helps
you to answer to know that this database is a catalog work in
progress (meaning we keep adding new products) also when I link the
tables am I going to be able to still have page numbers? I know how
to use computers - but I don't know about computers- so simple
answers are great. Thanks- I really appreciate your time
It's clear, then, that the size *is* your problem, and the problem is
almost certainly caused by the images you have stored in the database.
It arises because, although the image file you insert in your table may
be in a compressed format such as JPEG or GIF, Access always stores a
completely expanded bitmap of the image as well as the original picture
data. This leads to rapid bloating of the database. It *may* be that
you could recover some space in your database by compacting it (Tools ->
Database Utilities -> Compact and Repair Database...), but you will
always experience this bloating problem if you insert images into your
database in the normal way.
The simplest and most common solution to this problem is not to store
images in your database at all! Instead, store them in a particular
folder or set of folders on your hard disk, and store in the database
only the name -- or path and name -- of each image file, in text fields.
Then use unbound image controls, not OLE controls, on your forms and
reports to show the images. In the Current event of the form, and the
Format event of a report, use VBA code to set the image control's
Picture property to the path and name of the image file.
Larry Linson has a web page and demo database showing this method for
handling images, as well as two other methods, to be found here:
http://accdevel.tripod.com/imaging.htm
Let me know if you need more help with this.