We will be storing them as images
They want to store the images in the Access tables, however i think this will slow down the database so i would like to have a link stored in the tables. Is there a way to make this a one step process? Right now they scan the document in a folder on the network and then they have to open the the database and add the file name to the table. Then i have a form that they can select the pdf file and it runs code to open an view the document stored on the network.
Private Sub cmdOpenPDF_Click()
Dim strAcPath As String
Dim strFName As String
Dim strFilePath As String
If IsNull(Me.cboPDF) = True Then
MsgBox "Please select a PDF from the list", vbCritical, "Selection Error"
cboPDF.SetFocus
Else
strFName = Me.cboPDF.Column(1)
strAcPath = Me.ReaderLocation
strFilePath = Me.PDF_FilePath
Call Shell(strAcPath & " " & [strFilePath] & [strFName] & ".pdf", vbMaximizedFocus)
End If
End Sub
They want to be able to scan the document and save in a table from within Access. Not sure how to do this.
Thanks for any suggestions