I'd try asking this in the word.printing.fonts newsgroup. My
guess is a problem with the printer drivers, but printing is
really NOT my area of expertise :-)
Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Sep
30 2003)
http://www.word.mvps.org
This reply is posted in the Newsgroup; please post any follow
question or reply in the newsgroup and not by e-mail :-)
There are rare reports that collating does not work. I was guessing
that deleting Word's data key and/or reloading the printer driver
might fix it, but I have no evidence.
Doug Robbins posted the following macro as a work-around. It prints
the copies as separate jobs.
Dim copies, i As Long
copies = InputBox("Enter the number of copies that you require.",
"Print Multiple Copies", 1)
If IsNumeric(copies) Then
For i = 1 To copies
ActiveDocument.PrintOut
Next i
ElseIf copies = "" Then
Exit Sub
Else
MsgBox "You must enter a number"
End If
The fact that the problem can be "fixed" by unchecking the box and
then checking it again is suggestive. Probably Word is keeping two
copies of the bit; one that it displays and a different one that does
the work. These are getting unsynchronized somehow. I seem to recall
a similar problem with the "equal column width" check box in Format |
Columns. I don't know whether there is a generic bug in Word, or just
two different programmers making the same mistakes.
BobS