Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() hi, How can I remove a module from another module in existing workbook. Is it possible or not? on waiting dayanand -- dayanand108 ------------------------------------------------------------------------ dayanand108's Profile: http://www.excelforum.com/member.php...o&userid=25464 View this thread: http://www.excelforum.com/showthread...hreadid=470668 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Dayanand,
How can I remove a module from another module in existing workbook. Is it possible or not? If you are asking how to delete a module prorammatically, see Chip Pearson's page on VBE programming at: http://www.cpearson.com/excel/vbe.htm -- Regards, Norman "dayanand108" wrote in message ... hi, How can I remove a module from another module in existing workbook. Is it possible or not? on waiting dayanand -- dayanand108 ------------------------------------------------------------------------ dayanand108's Profile: http://www.excelforum.com/member.php...o&userid=25464 View this thread: http://www.excelforum.com/showthread...hreadid=470668 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
'----------------------------------------------------------------
Function DeleteModule(moduleName As String) '---------------------------------------------------------------- Dim vbMod As Object Set vbMod = ActiveWorkbook.VBProject.VBComponents(moduleName) ThisWorkbook.VBProject.VBComponents.Remove vbMod End Function -- HTH Bob Phillips "dayanand108" wrote in message ... hi, How can I remove a module from another module in existing workbook. Is it possible or not? on waiting dayanand -- dayanand108 ------------------------------------------------------------------------ dayanand108's Profile: http://www.excelforum.com/member.php...o&userid=25464 View this thread: http://www.excelforum.com/showthread...hreadid=470668 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Remove Protected Macro Code from Excel Module | Excel Discussion (Misc queries) | |||
Remove and Import Module | Excel Programming | |||
Remove active module in a copy | Excel Programming | |||
Remove VBA Project module | Excel Programming | |||
Remove VB Module from workbook | Excel Programming |