disable quick print word 2007

  • Thread starter Thread starter chuck
  • Start date Start date
C

chuck

How do I disable quick print in Word 2007?
(I think this is what is causing my problem)
I have a macro setup from a mail merge that is opening the printer window
and it allows me to select my printer. This has been setup and running on
Word 2000, Word 2002, and Word 2003. The macro works, but it never allows me
to select my printer, it just prints.

Thanks,
Chuck
 
hi Chuck,

Can you post the code from your macro?

=========
How do I disable quick print in Word 2007?
(I think this is what is causing my problem)
I have a macro setup from a mail merge that is opening the printer window
and it allows me to select my printer. This has been setup and running on
Word 2000, Word 2002, and Word 2003. The macro works, but it never allows me
to select my printer, it just prints.

Thanks,
Chuck <<
--

Bob Buckland ?:-)
MS Office System Products MVP

*Courtesy is not expensive and can pay big dividends*
 
Bob Buckland ?:-) said:
hi Chuck,

Can you post the code from your macro?

=========
How do I disable quick print in Word 2007?
(I think this is what is causing my problem)
I have a macro setup from a mail merge that is opening the printer window
and it allows me to select my printer. This has been setup and running on
Word 2000, Word 2002, and Word 2003. The macro works, but it never allows me
to select my printer, it just prints.

Thanks,
Chuck <<
--

Bob Buckland ?:-)
MS Office System Products MVP

*Courtesy is not expensive and can pay big dividends*
 
Bob - here is my macro:

Sub PrintAndClose()
'
' PrintAndClose Macro
' Print and close fee slip.
'
With ActiveDocument.MailMerge
.Destination = wdSendToPrinter
.MailAsAttachment = True
.MailAddressFieldName = ""
.MailSubject = ""
.SuppressBlankLines = True
With .DataSource
.FirstRecord = wdDefaultFirstRecord
.LastRecord = wdDefaultLastRecord
End With
.Execute Pause:=True
End With
Application.Quit
End Sub

Thanks,

Chuck@msi-simplicity
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top