leblanc9425
Registered User.
- Local time
- Yesterday, 21:54
- Joined
- May 8, 2013
- Messages
- 22
Background: I created a simple database that my office uses to capture the outcome of meetings. Users input about 25 lines of text to summarize the meeting and then can add Attachments. I use Access 2007, so I have incorporated an Attachment field for users to upload files (Powerpoint, PDF, Word, Excel, etc) that were part of the meeting. It's working great and people in the office can quickly search the db for a meeting and view all the related files in one place.
Problem: the db is getting large - nowhere near the 2GB limit but I am looking to the future. I currently have only 200 records and the db is already 60mb. I believe the problem is with adding the attachments to the db.
Help Needed: I am looking for any sample code or solutions that will do the same thing as the Attachment field but stores the actual attachment outside or external to the db. From the Users perspective they would do the same thing as before by simply Adding an Attachment to the record.
allows the users to browse to a file which then
I expect that a solution is complicated because I assume the code would have to do the following:
Problem: the db is getting large - nowhere near the 2GB limit but I am looking to the future. I currently have only 200 records and the db is already 60mb. I believe the problem is with adding the attachments to the db.
Help Needed: I am looking for any sample code or solutions that will do the same thing as the Attachment field but stores the actual attachment outside or external to the db. From the Users perspective they would do the same thing as before by simply Adding an Attachment to the record.
allows the users to browse to a file which then
I expect that a solution is complicated because I assume the code would have to do the following:
- Allow User to browse to the file location and select a file
- Append a unique ID to the file (ie 157-A Sample File.docx)
- Save the file with new appended name to a default directory
- Record in a related table (tblFiles) the location of the file
- Display to the User all files associated to the record as a hyperlink