Sample Macro to Clear the Print To File Check BoxLast reviewed: July 31, 1997Article ID: Q144798 |
The information in this article applies to:
SUMMARYThis article provides a sample macro that clears the Print To File check box without printing a document.
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. To clear the Print To File check box, create a macro that prints a page range that does not exist. For example, the following macro prints page 999. If your document contains page 999 choose a different page range.
Sub Main FilePrint .Range = 3, .From = "999", .To = "999", .PrintToFile = 0 End Sub |
KBCategory: kbmacro
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |