Documents and/or pictures in my DB (2 Viewers)

Dvorak Pietrek

New member
Local time
Today, 15:23
Joined
Sep 6, 2025
Messages
4
Hi

I'm using Access 2007, but my database is in the 2002-2003 format (.mdb), and I want to work with it in this version. The reason is that I created my own menus, and this isn't possible since the 2007 version. I would like some examples in a database so I can customize my database. They are examples of how to insert documents or photos into my database. I'm looking for simple examples because I'm a beginner.

Thanks
 
The attached zip archive includes both .accdb and .mdb versions, which illustrate how to browse to a file and return its path as text. The .accdb version stores the path in a column in a table, from which the file can be opened in its associated application. It would not be difficult to amend the .mdb version to do the same. Storing the path to a file rather than embedding the file itself avoids the excessive bloat which the latter can produce when a significant number of files have been added to the database.
 

Attachments

The attached zip archive includes both .accdb and .mdb versions, which illustrate how to browse to a file and return its path as text. The .accdb version stores the path in a column in a table, from which the file can be opened in its associated application. It would not be difficult to amend the .mdb version to do the same. Storing the path to a file rather than embedding the file itself avoids the excessive bloat which the latter can produce when a significant number of files have been added to the database.
thanks a lot. That's what i wanted it
 
thanks a lot. That's what i wanted it
Please note that the proposed solution, which is the appropriate choice, is NOT to store the documents and images internally. The appropriate approach is to store them externally, in a shared folder, and only store the path to the image or document in a field in a table in the database.
 
Please note that the proposed solution, which is the appropriate choice, is NOT to store the documents and images internally. The appropriate approach is to store them externally, in a shared folder, and only store the path to the image or document in a field in a table in the database.
yes, i save to a network. Thanks
 

Users who are viewing this thread

Back
Top Bottom