WD: WordBasic Macro to Test for an Existing Style NameLast reviewed: November 17, 1997Article ID: Q117826 |
The information in this article applies to:
SUMMARYWhen you write macros in Microsoft Word, you may need to test for the existence of a style name before modifying or deleting the style. If your macro does not check for the existence of a style before attempting to modify or delete the style, the FormatStyle command may return the following error message:
This style name does not exist. MORE INFORMATIONThe following WordBasic macro tests for an existing style named "Test." If the style exists, Word deletes the style.
Sub MAIN sStyleName$ = "Test" If StyleDesc$(sStyleName$) = "" Then MsgBox sStyleName$ + " does not exist", "Style Name" Else FormatStyle .Name = sStyleName$, .Delete End If End SubFor more information about how to do this in Word 97, please see the following articles in the Microsoft Knowledge Base:
ARTICLE-ID: Q158847 TITLE : Word 97: Macro To Test For An Existing Style Name REFERENCES"Microsoft Word Developer's Kit," version 6.0, pages 706-707
|
Additional query words: WordBasic delete style FormatStyle
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |