Results 1 to 3 of 3

Saving without macros excel 2007

Threaded View

  1. #1
    Registered User
    Join Date
    07-07-2008
    Location
    Bath
    MS-Off Ver
    Microsoft Office 2007
    Posts
    42

    Arrow Saving without macros excel 2007

    Hi,

    I've tried searching the forum but I've got an error
    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 71 bytes) in /home/eforum/public_html/search.php on line 1155
    I have following macro, what worked just fine in 2003. Now I'm working with 2007 and I can't set up the Microsoft Visual Basic for Applications Extensibility library ...

    Here's the code:
    Sub SaveWithoutMacros()
    
    'Purpose : To save a copy of the active workbook without macros
    
    'PLEASE NOTE : You must choose Tools, References and select the
    'Microsoft Visual Basic for Applications Extensibility library
    
    Dim vFilename As Variant
    Dim wbActiveBook As Workbook
    Dim VBComp As VBIDE.VBComponent
    Dim VBComps As VBIDE.VBComponents
    
    
    On Error GoTo CodeError
    
    
    'Get a filename to save as
    vFilename = Application.GetSaveAsFilename(filefilter:="Microsoft Excel Workbooks,*.xls", _
                                            Title:="Save Copy Without Macros")
                                           
    If vFilename = False Then Exit Sub  'User chose Cancel
    
    ActiveWorkbook.SaveCopyAs vFilename
    Set wbActiveBook = Workbooks.Open(vFilename)
    
    
    'Now strip all VBA, modules, userforms from the copy
    'This code is from Chip Pearson's website http://www.cpearson.com
    
    Set VBComps = wbActiveBook.VBProject.VBComponents
    
    For Each VBComp In VBComps
       Select Case VBComp.Type
          Case vbext_ct_StdModule, vbext_ct_MSForm, _
                vbext_ct_ClassModule
             VBComps.Remove VBComp
          Case Else
             With VBComp.CodeModule
                .DeleteLines 1, .CountOfLines
             End With
       End Select
    Next VBComp
    
    wbActiveBook.Save
    
    Exit Sub
    
    CodeError:
    MsgBox Err.Description, vbExclamation, "An Error Occurred"
    
    End Sub
    Thanks,
    George
    Last edited by george1982; 06-16-2009 at 05:32 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1