Yes there is. You have to make your the tools
function disactive coz the add in will load
under the tools option. You should thank Ivan Maola
for this code. He deserve the credit.
Paste this under your workbook module :
Sub Disable_Tools()
Application.CommandBars("Worksheet Menu Bar").Controls("tools").Enabled =False
End sub
Sub Enable_Tools()
Application.CommandBars("Worksheet Menu Bar").Controls("tools").Enabled =True
End sub
While this code paste under your module :
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Enable_Tools
End Sub
Private Sub Workbook_Open()
Disable_Tools
End Sub
Hope this helps .regards
Many thanks for your help
Re: Many thanks for your help