Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Is it possible to disable/delete an Autostart module with code ? If this is possible, could you please help me some code. Thanks Tempy *** Sent via Developersdex http://www.developersdex.com *** |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I believe you can hold the left SHIFT key down whilst loading Excel to avoid
loading any auto_open macro's. You can then disable the macro's from the Tools, Add-Ins menu. -- http://HelpExcel.com 1-888-INGENIO 1-888-464-3646 x0197758 "Tempy" wrote: Hi, Is it possible to disable/delete an Autostart module with code ? If this is possible, could you please help me some code. Thanks Tempy *** Sent via Developersdex http://www.developersdex.com *** |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This will delete a module
Dim vbMod As Object Set vbMod = ThisWorkbook.VBProject.vbcomponents("Module2") ThisWorkbook.VBProject.vbcomponents.Remove vbMod -- HTH Bob Phillips "Tempy" wrote in message ... Hi, Is it possible to disable/delete an Autostart module with code ? If this is possible, could you please help me some code. Thanks Tempy *** Sent via Developersdex http://www.developersdex.com *** |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Autostart Macro | Excel Discussion (Misc queries) | |||
Autostart | Excel Discussion (Misc queries) | |||
Delete an autostart Sub with code | Excel Programming | |||
Autostart | Excel Programming | |||
Variable from a sheet module in a class module in XL XP | Excel Programming |