J
JayM
I have a macro that prints the current page from a button on the toolbar.
This is used by word 2000 and word 2003 users unfortunately it seems that for
the word 2003 users the print current page prints the page previous unless
their cursor is at the very bottom of the page.
Any ideas?
Code follows:
Sub PRINT_THIN_CURPAGE()
' PRINT_THIN_CURPAGE Macro
'UNPROTECTDOCUMENT
With ActiveDocument.PageSetup
.FirstPageTray = wdPrinterPaperCassette
.OtherPagesTray = wdPrinterPaperCassette
End With
Application.PrintOut filename:="", Range:=wdPrintCurrentPage,
Item:=wdPrintDocumentContent, Copies:=1, Pages:="",
PageType:=wdPrintAllPages, Collate:=True, Background:=True, PrintToFile:=False
'REPROTECTDOCUMENT
End Sub
JayM
This is used by word 2000 and word 2003 users unfortunately it seems that for
the word 2003 users the print current page prints the page previous unless
their cursor is at the very bottom of the page.
Any ideas?
Code follows:
Sub PRINT_THIN_CURPAGE()
' PRINT_THIN_CURPAGE Macro
'UNPROTECTDOCUMENT
With ActiveDocument.PageSetup
.FirstPageTray = wdPrinterPaperCassette
.OtherPagesTray = wdPrinterPaperCassette
End With
Application.PrintOut filename:="", Range:=wdPrintCurrentPage,
Item:=wdPrintDocumentContent, Copies:=1, Pages:="",
PageType:=wdPrintAllPages, Collate:=True, Background:=True, PrintToFile:=False
'REPROTECTDOCUMENT
End Sub
JayM