Protected Documents

L

LEU

With a protected document if some one tries to edit it, the Protect Document
Pane comes up. Is there a way to have an information box come up telling then
to use the toolbar buttons to edit this document instead of the Protect
Document Pane coming up?

LEU
 
G

Graham Mayor

You could use a macro to provide the information eg Use the code as an
autonew macro if you are creating new documents from your template, and/or
autoopen if users are opening the document subsequently. Change sMsg= to the
information you wish to impart.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>

Sub PopUpAdvice()
Dim sMsg As String
Dim sVer As Integer
sMsg = "Refer to status line at bottom of screen for field entry details" _
& vbCr & "Use the toolbar buttons to edit the document"
sVer = Application.version
If sVer < 12 Then
Assistant.On = True
Set Balloon = Assistant.NewBalloon
With Balloon
.Text = sMsg
.Button = msoButtonSetOK
.Animation = msoAnimationBeginSpeaking
.Show
End With
Else
MsgBox sMsg, vbInformation, "User Information"
End If
End Sub
 

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