Enabled Property Example

If the first form field in the active document is an enabled check box, this example selects the check box.

Set myFField = ActiveDocument.FormFields(1)
If myFField.Enabled = True And _
        myFField.Type = wdFieldFormCheckBox Then
    myFField.CheckBox.Value = True
End If