Microsoft Excel popup "Microsoft Excel has stopped working"

Pinaceous

Well-known Member
Joined
Jun 11, 2014
Messages
1,124
Office Version
  1. 365
Platform
  1. Windows
Hi All,

I'm using an auto save feature to save a document prior to the user exiting.

Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
  
On Error GoTo Error1


    MsgBox "AUTOSAVED !!"


    
    ActiveWorkbook.Save
    
    Application.AutoRecover.Enabled = False

    Application.Quit
        End
        
    Application.DisplayAlerts = False
    
    Exit Sub
    
    
Error1:
    Application.AutoRecover.Enabled = False
    Application.Quit
        End
        
    Application.DisplayAlerts = False
    
    Exit Sub
    
End Sub


Occasionally, Excel pops with its message of
Microsoft Excel has stopped working
.

Is there anyway to suppress &/or to disable this popup?

To add to the code that I have started?

Many Thanks,
Pinaceous
 
Last edited:

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Try putting

Application.DisplayAlerts = False
As the 1st line.
Cart before the horse, but if XL crashes, it may ignore your commands.
 
Upvote 0
Hey Ranman256,

I'll give it a go! Many thanks for your suggestion!

I remember that picture from running man.

Take care,
Paul
 
Upvote 0

Forum statistics

Threads
1,223,239
Messages
6,170,947
Members
452,368
Latest member
jayp2104

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