After writing my comment I went back and realized you weren't saving the documents within Access. You would be better off at that point using an image object to display the image and a save button to store the image to the server. The problem comes with scanning the picture in and showing it in Access. Unless you have some kind of add-in that comes with the scanner or camera, I don't think you can do it.
If you skip that though and just have the file saved somewhere (your desktop for example) you could create a form with an Open button. Clicking that button will bring up an open file dialog and let you pick the image. Then you could have the picture loaded into the image object and saved to the server using some code to rename the file. The last step would be to store the path of the object to the database so you can access it again later.
Main Topics
Browse All Topics





by: stelth240Posted on 2009-06-10 at 11:48:18ID: 24594765
The easiest way that I can think of to do it is to create a form in Access, set it's recordsource property to the table that contains the OLE Object field, and then drag that field onto the form. It will create a Bound OLE object for you.