Cannot quit Mircrosoft office Excel.

Pravynandas

New Member
Joined
Nov 12, 2010
Messages
3
Hi,

This is my first post in Mr.Excel (Though i'm reading here from past a year).

I've designed an excel application in which a userform will be active all the time showing on the desktop (somehow i managed to hide the excel application on the tastbar)

Now when I try to Logoff / Shutdown I'm getting a pop-up "Cannot quit Mircrosoft office Excel." followed by a "End Program" dialog with message "The system cannot end this program because it is waiting for a response from you."

However when I close the Active userform by pressing Cancel/X button it closed fine.

The Code is:

Private Sub UserForm_QueryClose(Cancel As Integer, CloseMode As Integer)

Vresp = MsgBox("Are you sure to exit the userform?", vbYesNo)
If Vresp = vbYes Then
If Application.Workbooks.count > 1 Then
ThisWorkbook.Close
Else
ActiveWorkbook.Save
Application.Quit
End If
Else
Cancel = True
End If

End Sub

Conclusion: Can't Logoff/Shutdown without the need of closing userform manually?
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).

Forum statistics

Threads
1,214,943
Messages
6,122,380
Members
449,080
Latest member
Armadillos

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