How do I change the color appearance of a check box?

G

-g

I received an evaluation form where the check boxes appear in red when
checked - how do I turn this off, or make them black when checked/unchecked?
 
G

Graham Mayor

If these are form field check boxes, then remove the macro (or part of the
macro) that runs on exit from the form field to apply the colour.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
G

Greg Maxey

Considering a dearth of really helpful information in your question, I can
only assume that you are referring to some sort of protected (on-ling) Word
form. I would guess that there is a macro that fires when the users exits
the checkbox something like this:

Sub CBOnExit()
With ActiveDocument
If .ProtectionType <> wdNoProtection Then
.Unprotect
If .FormFields("Check1").CheckBox.Value = True Then
.FormFields("Check1").Range.Font.Color = wdColorRed
Else
.FormFields("Check1").Range.Font.Color = wdColorAutomatic
End If
.Protect wdAllowOnlyFormFields, True
End If
End With
End Sub

If this is the case then you need to unprotect the form, double click the
checkbox and set Run Macro on Exit to "None."
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top