XL98: How to Programmatically Reset a Workbook to Default Styles

ID: Q247981


The information in this article applies to:
  • Microsoft Excel 98 Macintosh Edition


SUMMARY

The following Microsoft Visual Basic for Applications Sub procedure removes all styles in a Microsoft Excel workbook and then adds back the default styles you see in a new workbook. This macro may be helpful for removing extra styles added to a workbook infected by a macro virus.

This macro uses the Workbooks.Add method, which bypasses templates in the startup directories. Because of this, it works correctly even if templates in the startup directories have had extra styles added to them.


MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact a Microsoft Certified Solution Provider or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Solution Providers, please see the following page on the World Wide Web:

http://www.microsoft.com/mcsp/
For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

http://www.microsoft.com/support/supportnet/overview/overview.asp
The following macro removes the styles from the currently active workbook. If you type this code into a new workbook, please make sure to activate the workbook from which you want to reset the styles before running the macro.

Sub RebuildDefaultStyles()

'The purpose of this macro is to remove all styles in the active
'workbook and rebuild the default styles. "Normal" cannot be
'deleted. Therefore the macro does not attempt to delete it.
'It rebuilds the default styles by merging them from a new workbook.

    'Dimension variables.
    Dim MyBook As Workbook
    Dim tempBook As Workbook
    Dim CurStyle As Style
    
    'Set MyBook to the active workbook.
    Set MyBook = ActiveWorkbook
    
    'Delete all the styles in the workbook.
    For Each CurStyle In ActiveWorkbook.Styles
        If CurStyle.Name <> "Normal" Then CurStyle.Delete
    Next CurStyle

    'Open a new workbook.
    Set tempBook = Workbooks.Add
    
    'Disable alerts so you may merge changes to the Normal style
    'from the new workbook.
    Application.DisplayAlerts = False
    
    'Merge styles from the new workbook into the existing workbook.
    MyBook.Styles.Merge Workbook:=tempBook
    
    'Enable alerts.
    Application.DisplayAlerts = True
    
    'Close the new workbook.
    tempBook.Close

End Sub 


REFERENCES

For additional information, please see the following article in the Microsoft Knowledge Base:

Q181058 OFF98: How to Run Sample Code from Knowledge Base Articles

Additional query words: vba xl98 Laroux BINVCAR PLDT PLDT97 A-a SGV LOCAS Big_Dork Binv.xls Car.xls Pldt.xls A-a.xls Negs.xls Sgv.xls Vera.xls Personal.xls Person2.xls Sing.xls Auto_Open Check_Files Cecelia VIRUS-EDY NEG Promo Foxz WENDY

Keywords : kbdta kbdtacode OffVBA KbVBA
Version : MACINTOSH:98
Platform : MACINTOSH
Issue type : kbhowto


Last Reviewed: December 14, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.