View Single Post
 
Old 03-24-2022, 03:15 AM
gorkac gorkac is offline Windows 10 Office 2019
Banned
 
Join Date: Jul 2021
Location: Usa
Posts: 62
gorkac is on a distinguished road
Default

What I need is that they always open a new document based on the template. Prevent the template from working.
At the moment it has occurred to me, from Document_Open, to launch a message asking them to close the template and reopen it as "New". For them to work the document based on the template.
It is that if they work the template directly, someone will spoil it.
Code:
Sub Document_Open()

'macro message
     MsgBox "CLOSE TEMPLATE, PLEASE REOPEN " _
     & "DOUBLE LEFT-CLICK ON THE TEMPLATE OR, WITH THE RIGHT MOUSE BUTTON, SELECT ''NEW''"
End Sub
Reply With Quote