WD: Macro to Save Selection to New FileLast reviewed: February 2, 1998Article ID: Q71461 |
The information in this article applies to:
SUMMARYThe following WordBasic macro copies the selected text from the current Microsoft Word document to a new document based on the Normal template. After copying the selected text to the new document, the Save As dialog box appears so that a file name and format can be entered.
Sub MAIN If SelType() = 1 Then MsgBox "Nothing is selected." Else EditCopy FileNew EditPaste On Error Resume Next FileSave End If End SubIf the selection is less than one character (nothing is selected), a message box will display the message "Nothing is selected." If the selection is one character or more, the selected text will be copied to a new file based on the Normal template.
REFERENCES"Microsoft Word for Windows Technical Reference," version 1.0, pages 77 and 88. "Microsoft Word for Windows and OS/2 Technical Reference," version 1.0, pages 223-224 and 250. "Using WordBasic" by WexTech Systems, Inc. and Microsoft Corporation,Microsoft Press, 1992.
|
Additional query words: document
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |