WD: WordBasic Example to Print Current PageLast reviewed: February 16, 1998Article ID: Q69519 |
The information in this article applies to:
SUMMARYIn Word, you can create a macro to print the current page only (that is, the page where the insertion point resides). To create this type of macro, use the appropriate procedure for your version of Word in the "More Information" section of this article.
MORE INFORMATIONWARNING: ANY USE BY YOU OF THE CODE PROVIDED IN THIS ARTICLE IS AT YOUR OWN RISK. Microsoft provides this macro code "as is" without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.
Word versions 2.x, 6.x and 7.xThe following WordBasic macro instruction prints the current document page:
FilePrint .Range = 2 Word for Windows versions 1.xYou can use one of the following macros for printing the current page. Methods for single section documents only: Macro 1: Before you run the following macro, make sure that nothing is selected in the document.
Sub MAIN EditGoto "\Page" FilePrint .Range = 1 GoBack End SubMacro 2:
Sub MAIN StartOfLine UtilRepaginateNow InsertField .Field = "Page" CharLeft 1, 1 UnLinkFields PageNum$ = Selection$() EditClear FilePrint .Range = 2, .From = PageNum$, .To = PageNum$ End SUB |
Additional query words: active range
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |