View Single Post
 
Old 03-13-2024, 08:22 AM
gmaxey gmaxey is offline Windows 10 Office 2019
Expert
 
Join Date: May 2010
Location: Brasstown, NC
Posts: 1,617
gmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nice
Default

Yes it is possible. I have not done a full engineering or performance study but I would assume that process uses some system resources. Does it eat them up? I don't think so. You will have to try it for yourself:

Code:
Sub Reminder()
  Application.OnTime Now + TimeValue("00:30:00"), "ReminderMsg"
lbl_Exit:
  Exit Sub
End Sub
Sub ReminderMsg()
  If MsgBox("Wake up. Do you want to continue 30 minutes wake up calls?", vbYesNo, "Stop") = vbYes Then
    Reminder
  End If
lbl_Exit:
  Exit Sub
End Sub
__________________
Greg Maxey
Please visit my web site at http://www.gregmaxey.com/
Reply With Quote