Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Word 2007 SP1
XP Pro SP2 Problem: How to remove all styles from the Quick Style Gallery I have many styles in the Quick Style Gallery list. I would like to have only a few listed. Is there a way to quickly remove all the styles in the Quick Style Gallery list instead of having to remove each style individually using the context menu? Thanks in advance. |
#2
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
To clear all quick styles in the active document, you can run the following
macro: Sub ClearAllQuickStylesInDoc() Dim s As Style For Each s In ActiveDocument.Styles If s.Type = wdStyleTypeCharacter Or _ s.Type = wdStyleTypeParagraph Or _ s.Type = wdStyleTypeLinked Then s.QuickStyle = False End If Next s End Sub If you need assistance, see http://www.gmayor.com/installing_macro.htm. -- Stefan Blom Microsoft Word MVP "John" wrote in message ... Word 2007 SP1 XP Pro SP2 Problem: How to remove all styles from the Quick Style Gallery I have many styles in the Quick Style Gallery list. I would like to have only a few listed. Is there a way to quickly remove all the styles in the Quick Style Gallery list instead of having to remove each style individually using the context menu? Thanks in advance. |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Quick Style Gallery - Microsoft Office 2007 | Microsoft Word Help | |||
Quick Styles Gallery in 2007 Missing? | Microsoft Word Help | |||
Removing styles from Quick Style Gallery | Microsoft Word Help | |||
Can I create a document-specific Quick Style Gallery? | Microsoft Word Help | |||
Quick Styles Gallery Changes | New Users |