D
dcharmatz
I used Doug Robins code to change the color of a checkbox color to
red:
With ActiveDocument
..Unprotect
With .FormFields("Check2")
If .CheckBox.Value = True Then
..Range.Font.Color = wdColorRed
Else
..Range.Font.Color = wdColorAutomatic
End If
End With
..Protect wdAllowOnlyFormFields, NoReset
End With
My question is... Do I have to go through and bookmark each Checkbox?
I have a table with a column for 'Yes' and 'No' that has a lot of
questions. Is there a way to say anything in the 'No' column calls
the code above (to flag it in red)?
Thanks,
David
red:
With ActiveDocument
..Unprotect
With .FormFields("Check2")
If .CheckBox.Value = True Then
..Range.Font.Color = wdColorRed
Else
..Range.Font.Color = wdColorAutomatic
End If
End With
..Protect wdAllowOnlyFormFields, NoReset
End With
My question is... Do I have to go through and bookmark each Checkbox?
I have a table with a column for 'Yes' and 'No' that has a lot of
questions. Is there a way to say anything in the 'No' column calls
the code above (to flag it in red)?
Thanks,
David