• Macro to remove ‘automatically update’ in styles (Word 2000)

    Home » Forums » AskWoody support » Productivity software by function » MS Word and word processing help » Macro to remove ‘automatically update’ in styles (Word 2000)

    Author
    Topic
    #360999

    Some time ago WOW included a macro to search all styles in a Word document and “untick” the automatically update tick box. Can anyone provide me with a copy of the VBA?

    Robin Anson

    Viewing 0 reply threads
    Author
    Replies
    • #544831

      I don’t remember seeing it, but surely it can’t be much more than something along the lines of:

      Sub noUpdateStyles()
      Dim aStyle as Style
      For Each aStyle in ActiveDocument.Styles
      If aStyle.Type = wdStyleTypeParagraph Then
      aStyle.AutomaticallyUpdate = False
      End If
      Next aStyle
      End Sub

      …which seems to work for me. Interesting to see what the experts reckon (I’m just an enthusiastic amateur!)

    Viewing 0 reply threads
    Reply To: Macro to remove ‘automatically update’ in styles (Word 2000)

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: