Timed message box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi each and all ,

My Idea is to be able to have a msg box appear to reminder the user to
perform a task, at say 10 min intervals, the user should have the option to
turn this off or vary the interval between mgs box reminders, each time the
msg box appears, pressing ok should close the msg box and restart the timer
for the next msgbox.

Thanks as always
 
How long do you think it would be before they switched it off.

Don't think you can do it but, if you can, I think you'd lose a lot of
friends ... it's called nagware

Regards

Trevor
 
Thank Tom,

Also found a good proceedure in my Excel VBA for Dummies book.
 
Tom, everything works great, except for when a worksheet is protected, any
suguestions?.
 
The msgbox code fails when the worksheet is protected?????????

If you're doing more things, maybe you could either:

Unprotect the sheet (you'll have to know the password), do the work and
reprotect the sheet with the same password.

or

Check to see if the worksheet is protected. If it is, just give an error
message and exit your procedure.
 
Thank You.

Dave Peterson said:
The msgbox code fails when the worksheet is protected?????????

If you're doing more things, maybe you could either:

Unprotect the sheet (you'll have to know the password), do the work and
reprotect the sheet with the same password.

or

Check to see if the worksheet is protected. If it is, just give an error
message and exit your procedure.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top