msg box that times out after 5 seconds

nouseforaname1982

Board Regular
Joined
May 25, 2004
Messages
73
I am trying to have a message box pop up and asks if the user wants to exit the macro.
If yes - will end the sub.
If no - will continue running the sub.
If no response in 5 seconds - will continue running the sub.

Thanks in advance for your help
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
try
Code:
Sub test()
Dim x
x = CreateObject("WScript.Shell").Popup _
      "Do you want to Stop? ", 5, , vbYesNo + vbQestion
If x = vbYes Then
    MsgBox "Exit Sub"
    Exit Sub
Else
    MsgBox "Continue"
End If
End Sub
 
Upvote 0
This part of the code does not seem to want to work:

x = CreateObject("WScript.Shell").Popup _
"Do you want to Stop? ", 5, , vbYesNo + vbQestion

The error is:

Compile error:
Expected: end of statement
 
Upvote 0
then try
Code:
x = CreateObject("WScript.Shell").Popup("Do you want to Stop? ", 5, , vbYesNo + vbQestion)
 
Upvote 0

Forum statistics

Threads
1,223,243
Messages
6,170,967
Members
452,371
Latest member
Frana

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