Anybody know how to create a macro in Word XP to Print current page?
J Jay Freedman Apr 21, 2004 #2 Jill said: Anybody know how to create a macro in Word XP to Print current page? Click to expand... Actually, quite a few people know how. Now you will, too. Sub PrintCurrentPage() ActiveDocument.PrintOut _ Range:=wdPrintCurrentPage, _ Background:=False End Sub
Jill said: Anybody know how to create a macro in Word XP to Print current page? Click to expand... Actually, quite a few people know how. Now you will, too. Sub PrintCurrentPage() ActiveDocument.PrintOut _ Range:=wdPrintCurrentPage, _ Background:=False End Sub
C Charles Kenyon Apr 21, 2004 #3 Record a macro that does it. Printing the current page is an option you can check on the print dialog box. Once you've recorded your macro you may want to edit it so that it looks like the one that Jay Freedman supplied you.
Record a macro that does it. Printing the current page is an option you can check on the print dialog box. Once you've recorded your macro you may want to edit it so that it looks like the one that Jay Freedman supplied you.