How to open a PDF file with Reader from an Access table.
This code sample is posted here for the general benefit of the PDF development community. Attribution and usage guidelines are as noted in the code source; please respect the wishes of the author when using this code.
Option Compare Database
Option Explicit
Sub OpenEachFileInTable()
On Error GoTo ErrorHandler
Dim db As Database
Dim rs As Recordset
Set db = CurrentDb
Set rs = db.OpenRecordset("Filenames")
Do Until rs.EOF
' Start Acrobat Reader
Shell "c:\acrobat3\Reader\AcroRd32.exe " + rs("strFilename"), vbHide
rs.MoveNext
Loop
' Cleanup
rs.Close
Set rs = Nothing
Set db = Nothing
Exit Sub
ErrorHandler:
' Display error message
MsgBox Err.Description
Resume Next
End Sub
Thanks to Magazinify.com, it's possible to have web articles delivered right to your inbox in PDF form. If that weren't enough, the nice folks at CNET have been nice enough to publish a step-by-step guide about how to set this all up using just a little time and a free Magazinify account.
Despite the numerous benefits, there can be potential issues with the conversion of paper documents into electronic archives. When scanning paper pages into PDF, it's possible to end up with the odd- and even-numbered pages in separate PDF files. It can be very time-consuming to collate them manually, but there is an easier way. Sean Stewart explains.