Thanks for your reply.
How do I get to the attachment? Here is the code that I have tried:
Private Sub cmdViewProp_Click()
Dim strFile As String
Dim rst As DAO.Recordset2
Dim rsa As DAO.Recordset2
Dim fld As DAO.Field2
Set rst = Me.RecordsetClone
Set fld = rst("PropDoc")
Set rsa = fld.Value
'MsgBox (rsa("filename"))
Application.FollowHyperlink rsa("FileData")
End Sub
This gives me the error message: Run-time error '490' Cannot open the
specified file.
I realize that I need to navigate through the attachments and find the one I
am looking for, but right now I will be happy just opening *anything*! LOL
For this particular record, my msgbox indicates that I am on a record with
the filename "Proposal Test.docx," which is the one that I want for now.
Many thanks!
Patti