WD98: Recorded Macro Switching to Outline View Causes Error (181538)
The information in this article applies to:
- Microsoft Word 98 Macintosh Edition
This article was previously published under Q181538 SYMPTOMS
When you run a recorded macro that performs the following actions:
- Changes to Outline View
-and-
- Saves the file
-and-
- Closes the document
-and-
- Opens the document
you receive the following error message:
Run-time error '4248':
This command is not available because no document is open.
CAUSE
The "ActiveWindow.ActivePane.View.Type=wdOutlineView" statement is recorded
a second time in the macro when the document is closed.
WORKAROUND
Comment or delete the second occurrence of the following statement in the
recorded macro:
ActiveWindow.ActivePane.View.Type = wdOutlineView
NOTE: The second occurrence of this statement in the sample macro in the
"More Information" section of this article immediately follows the
"ActiveDocument.Close" statement.
To Comment the Problematic Line of Code
Visual Basic ignores comments when it runs your procedures. Comment lines
begin with an apostrophe (') or with Rem followed by a space, and can be
added anywhere in a procedure. Follow these steps to convert the
problematic line of code to a comment:
- In the open document, point to Macro on the Tools menu, and then click
Macros.
- Select the recorded macro, and then click Edit.
- In the Visual Basic Editor, select the line of macro code that you want
to convert to a comment.
- On the View menu, point to Toolbars, and then click Edit.
- On the Edit toolbar, click the Comment Block button. The line of macro
code should now look similar to the following:
' ActiveWindow.ActivePane.View.Type = wdOutlineView
Note the apostrophe at the beginning of the line.
- On the File menu, click "Close and Return to Microsoft Word."
To Delete the Problematic Line of Code- In the open document, point to Macro on the Tools menu, and then click
Macros.
- Select the recorded macro, and then click Edit.
- In the Visual Basic Editor, select the line of macro code you want to
delete.
- On the Edit menu, click Cut.
- On the File menu, click "Close and Return to Microsoft Word."
STATUS
Microsoft has confirmed this to be a problem in the Microsoft products
listed at the beginning of this article.
REFERENCES
For more information about getting help with Visual Basic for Applications,
please see the following article in the Microsoft Knowledge Base:
163435 VBA: Programming Resources for Visual Basic for Applications
Modification Type: | Major | Last Reviewed: | 6/17/2005 |
---|
Keywords: | kbbug kbdtacode kbmacro kbnofix KB181538 |
---|
|