View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default Remove active module in a copy

Here's a function

'----------------------------------------------------------------
Function DeleteModule(moduleName As String)
'----------------------------------------------------------------
Dim vbMod As Object

Set vbMod = ActiveWorkbook.VBProject.VBComponents(moduleName)
ThisWorkbook.VBProject.VBComponents.Remove vbMod

End Function


--

HTH

RP
(remove nothere from the email address if mailing direct)


"Mehrdad Hakimzadeh" <Mehrdad wrote in
message ...
I have a workbook with one module and i want to save a copy of workbook
without this module. Plaese help me to write codes to do this

automaticaly.

Thanks
Mehrdad Hakimzadeh