You can only print documents sequentially after having opened them in Word.
Something along the lines of
Sub OpenAndPrint()
Dim vFname(3) As Variant
Dim oDoc As Document
vFname(0) = "d:\My Documents\Word Documents\Limitations on Use.docx"
vFname(1) = "d:\My Documents\Word Documents\Filename.doc"
vFname(2) = "d:\My Documents\Word Documents\Follow.doc"
vFname(3) = "d:\My Documents\Word Documents\Lorem.docx"
For i = 0 To UBound(vFname)
Set oDoc = Documents.Open(FileName:=vFname(i))
oDoc.PrintOut
oDoc.Close wdDoNotSaveChanges
Next i
End Sub
will do the job. Change the filenames and paths as appropriate
http://www.gmayor.com/installing_macro.htm
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>