Turn display alerts off then back on at close

J

J.W. Aldridge

- on open, i need to turn all automated display alerts off.
- then give my own alert (informing whomever opens the workbook how to
change security level in order to run macros)
- on close, cancel the alert 'do you want to save changes' message,
- but turn display alerts back on.
 
J

JNW

'to turn off
application.displayalerts = false

'to turn on
application.displayalerts = true

The only problem is you cannot run macros until the user has turned them on.
Chicken before the egg kind of problem.

What I usually do instead is on the workbook_beforeclose event I'll activate
an instruction sheet then save the file. This will show the instructions on
the next open of the file and the user can then follow to turn on macros.
 

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

Top