OwnStatus Property Example

This example sets the status bar help text for the form field named "Account" to the contents of the AutoText entry named "Acct."

With ActiveDocument.FormFields("Account")
    .OwnStatus = False
    .StatusText = "Acct"
End With