Since you're working in Access, you would need to use a macro that:
• starts a Word session;
• loads, prints & closes a document from the table;
• loop until all documents have been processed; and
• terminates the Word session.
The code for that would be something like:
Code:
Sub Demo()
Dim wdApp As Word.Application
Set wdApp = New Word.Application
Dim wdDoc As Word.Document
i As Long
wdApp.Visible = True
With TableItems
For i = 1 To .Count
Set wdDoc = wdApp.Documents.Open(Item(i))
With wdDoc
.PrintOut
.Close False
End With
Next
End With
wdApp.Quit
Set wdDoc = Nothing: Set wdApp = Nothing
End Sub
where 'TableItems' refers to your Access table (I'm not familiar with Access VBA). Note that you'd also need to set a reference to the Word Object Library.
PS: Once you're confident the code is working correctly, you can change 'wdApp.Visible = True' to 'wdApp.Visible = False'.