WD2000: How to Programmatically Save Each Page or Section of a Document As Separate File
This article was previously published under Q216845 On This PageSUMMARY
The following macros show how to break up a multipage document into separate files. The two macros use the page or section property of a Microsoft Word document to select and move through the document content. This code can be used in an automation scenario with Word not visible.
MORE INFORMATIONMicrosoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements. Separate File by PageThe following macro copies text one page at a time and saves that text in a new document. The macro uses the pre-defined bookmark \page and the document's built-in property of number of pages.Separate File by SectionThe following macro copies text one section at a time and saves that text in a new document. The macro uses the pre-defined bookmark \section to create the new document. This macro is useful for breaking up a mail merge "Merge to New Document" file.NOTE: When you use this code to select and copy the text content of the document, the header and footer are not retained. Styles, fonts and layout may change if the main file and the new document are from different templates, but direct formatting is maintained. For more information about bookmarks, in the Visual Basic Editor, click Microsoft Visual Basic Help on the Help menu, type predefined in the Office Assistant or the Answer Wizard, and then click Search to view the topic. For additional information about running sample code, please see the following article in the Microsoft Knowledge Base: 212536 (http://support.microsoft.com/kb/212536/EN-US/)
OFF2000: How to Run Sample Code from Knowledge Base Articles
| Article Translations
|

Back to the top
