temporarily disable a sub

rickblunt

Well-known Member
Joined
Feb 18, 2008
Messages
609
Office Version
  1. 2019
Platform
  1. Windows
Greetings, I am using the following sub to save a single WS from a WB onto a network drive and it works flawlessly.

Code:
Sub ExportElReport()


  Dim wb As Workbook
  
  Sheets("Emergency Lighting Inspection").Copy
  Set wb = ActiveWorkbook
  With wb
    application.DisplayAlerts = False
    .SaveAs _
         "N:\Facilities\DeptData\EH&S\Compliance and EHS\Facilities Inspections\Emergency Lighting\Emergency Lighting Report  " _
          & Format(Now, "yy_mmdd") & ".xlsx", FileFormat:=51
   .Close True
   application.DisplayAlerts = True
  End With
End Sub

I wanted to add a userform toolbar to my WS to give the user a couple of buttons to perform quick functions. (I know that I can embed buttons on the WS, but if I make it a tool bar then the button are always on top no matter where you scroll through the WS). So I added the following subs to the WS code.

Code:
Private Sub Worksheet_Activate()


FeReportControls.Show vbModeless


With ElReportControls
  .StartUpPosition = 0
  .Left = application.Left + (0.09 * application.Width) - (0.5 * .Width)
  .Top = application.Top + (0.8 * application.Height) - (0.5 * .Height)
  .Show
End With
End Sub




Private Sub Worksheet_Deactivate()


Unload ElReportControls


End Sub


The issue that I am having now though is that when it saves the code crashes ("object required"). I believe that this is because as a function of the SaveAs it is opening the new WS which calling for the userform which it cannot see since that is stored on the original WB. Is there a way to disable the worksheet activate/deactivate subs during the initial export sub?

Thank you for any advice.
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Hi,
You can disable all workbook / worksheet Events by setting EnableEvents =False

Example

Code:
Sub MySub()
 
Application.EnableEvents = False
'your code
 
 
Application.EnableEvents = True
End Sub

Note: you must explicitly set EnableEvents = True before your code terminates otherwise event code will not trigger.

Dave.
 
Upvote 0
Thanks for replying Dave, I knew about that string, but I figured if I used this it would stop the SaveAs event as well. Is this not correct?
 
Upvote 0
Thanks for replying Dave, I knew about that string, but I figured if I used this it would stop the SaveAs event as well. Is this not correct?

It should disable the BeforeSave event but you should still be able to use SaveAs method in your code.

Dave
 
Last edited:
Upvote 0
Thanks again Dave, it worked great - I should have tried it just to see before I posted it up - doh!.... I am guessing that I do turn off "everything", but as soon as I call the "SaveAs" back then it is going to enable that part? Thanks again for my continuing education :)
 
Upvote 0
Thanks again Dave, it worked great - I should have tried it just to see before I posted it up - doh!.... I am guessing that I do turn off "everything", but as soon as I call the "SaveAs" back then it is going to enable that part? Thanks again for my continuing education :)

When your code sets EnableEvents = False then Events in your workbook will stay disabled until your code sets them True.

No worries - I have done & said some daft things when responding to requests on the board. I guess we all do it.
Glad issue resolved.

Dave
 
Upvote 0

Forum statistics

Threads
1,216,074
Messages
6,128,652
Members
449,462
Latest member
Chislobog

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top