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
"Bob Buckland ?:-)" wrote:
> hi Chuck,
>
> Can you post the code from your macro?
>
> =========
> <<"(E-Mail Removed)" <(E-Mail Removed)@discussions.microsoft.com> wrote in message
> news:100E4121-C90C-4D6F-9568-(E-Mail Removed)...
> 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*
>
>
>
|