Is it possible to detect if the ActivePresentation is protected using VBA ?
I was thinking of something like:
I was thinking of something like:
Code:
If ActivePresentation.WritePassword = "" Then
MsgBox "Presentation is not write protected"
ELSE
With ActivePresentation
.WritePassword = "Passwd"
.SaveAs ActivePresentation.Name
End With