Salve ho scaricato il tool
https://www.accessmvp.com/thedbguy/downloads/theDBguyMVFAttachmentDemoV1.zip
Non c'e' la possibilità di accodare un solo record?
Es: maschera test - Record 1
ho provato con il segente codice ma non va
Private Sub cmdAddRecords_Click()
On Error GoTo errHandler
Dim strSQL As String
strSQL = "INSERT INTO tblNewTable (RecordID, Field1) " _
& " SELECT Maschere!test!RecordID, Field1 FROM tblOldTable"
db.Execute strSQL, dbFailOnError
Me.frmNewAttachment.Requery
errExit:
Exit Sub
errHandler:
MsgBox Err.Number & ": " & Err.Description
Resume errExit
End Sub