View Single Post
  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Greg Maxey[_2_] Greg Maxey[_2_] is offline
external usenet poster
 
Posts: 668
Default How do I change the color appearance of a check box?

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."
-g wrote:
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?


--
Greg Maxey - Word MVP

My web site http://gregmaxey.mvps.org
Word MVP web site http://word.mvps.org