Print several documents at once

  • Thread starter Thread starter mihai
  • Start date Start date
M

mihai

Hi

I need to print several documents at once. If I use the metho
described in Microsoft Word Help (see below) it prints maximum 9 files
Is this the maximum limit? I need to print more. Is there anothe
method or I'm doing something wrong?

"Print several documents at once
Click Open .

Locate and open the folder that contains the documents you want t
print.

Select the documents you want to print. How to select severa
documents.

Click Tools, and then click Print.
 
The following macro should print out all of the documents in c:\My
Documnents

Dim MyPath As String, MyName As String

MyPath = "c:\My Documents\"
MyName = Dir(MyPath & "*.doc")
Do While MyName <> ""
Application.PrintOut Background:=False
MyName = Dir
Loop


--
Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.

Hope this helps
Doug Robbins - Word MVP
 
Back
Top