I'm testing one of our vb6 programs against Word 2013, and have run into the subject error message - but haven't yet found a way around it. The program executes:
which works just fine with Word '03, but results in "the unprotect method or property is not available because this command is not available for reading" in '13.
Any suggestions - short of rewriting?
Code:
Set wrdApp = CreateObject("Word.Application")
Set wrdDoc = wrdApp.Documents.Open(DocName)
wrdApp.Documents(wrdDoc).Unprotect (password)
Any suggestions - short of rewriting?