Password Property

Microsoft Word Visual Basic

Password Property

       

Sets a password that must be supplied to open the specified document. Write-only String.

Example

This example opens Earnings.doc, sets a password for it, and then closes the document.

Set myDoc = Documents _
    .Open(FileName:="C:\My Documents\Earnings.doc")
myDoc.Password = "why"
myDoc.Close