A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » Tables
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Change appearance of Check Box in Word



 
 
Thread Tools Display Modes
  #1  
Old August 13th, 2008, 10:48 PM posted to microsoft.public.word.tables
ComcoDG
external usenet poster
 
Posts: 1
Default Change appearance of Check Box in Word


Hi all,

I'm using Microsoft 2003 and have a document containing Check Box Form
fields. I find that the appearance of the checked box is not
drastically different enough from the rest of the form when checked,
and many users fail to notice when a box is checked. Is there any way
to make a Check Box bold, or darker so that it stands out from the
rest?

Thanks in advance for the tips,

David




--
ComcoDG
  #2  
Old August 14th, 2008, 09:20 AM posted to microsoft.public.word.tables
Lene Fredborg
external usenet poster
 
Posts: 1,294
Default Change appearance of Check Box in Word

A check box form field acts almost like a character. While the form is
unprotected, you can e.g. select a check box and apply a larger font size or
change the font color (you can also apply e.g. bold font, but it will not
make the check box look different). In addition, you can make the check box
appear with colored fill. If you use the Borders and Shading dialog box to
apply shading to the check box, the shading will only be visible if you have
_not_ turned on Form Field Shading. Alternatively, you can apply highlight
(but you do not have so many colors to select from) – the highlight will be
visible even if you have turned on Form Field Shading.

--
Regards
Lene Fredborg - Microsoft MVP (Word)
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft Word


"ComcoDG" wrote:


Hi all,

I'm using Microsoft 2003 and have a document containing Check Box Form
fields. I find that the appearance of the checked box is not
drastically different enough from the rest of the form when checked,
and many users fail to notice when a box is checked. Is there any way
to make a Check Box bold, or darker so that it stands out from the
rest?

Thanks in advance for the tips,

David




--
ComcoDG

  #3  
Old August 14th, 2008, 05:38 PM posted to microsoft.public.word.tables
ComcoDG[_2_]
external usenet poster
 
Posts: 1
Default Change appearance of Check Box in Word


Thanks for the response. I’m really looking more for a way to make a
check box more demonstrative, or stand out more. Instead of merely
checking a box, I would love to find some way to have the change in
appearance of the checked box be much more drastic. This would allow it
to stand out from the other unchecked options. When uncheck its default
appearance works just fine since it doesn’t stand out.

Lene, it seems like you are saying that the function I’m looking for is
not available. I can change the general appearance of the Check box,
regardless of whether it has been checked or not. But I cannot have the
appearance of a checked box change any more than the natural check.

Bummer. Thanks anyhow.




Lene Fredborg;357963 Wrote: [color=blue][i]
A check box form field acts almost like a character. While the form is
unprotected, you can e.g. select a check box and apply a larger font
size or
change the font color (you can also apply e.g. bold font, but it will
not
make the check box look different). In addition, you can make the check
box
appear with colored fill. If you use the Borders and Shading dialog box
to
apply shading to the check box, the shading will only be visible if you
have
_not_ turned on Form Field Shading. Alternatively, you can apply
highlight
(but you do not have so many colors to select from) – the highlight
will be
visible even if you have turned on Form Field Shading.

--
Regards
Lene Fredborg - Microsoft MVP (Word)
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft Word


"ComcoDG" wrote:





--
ComcoDG
  #4  
Old August 15th, 2008, 02:46 PM posted to microsoft.public.word.tables
Jay Freedman
external usenet poster
 
Posts: 9,488
Default Change appearance of Check Box in Word

Let's put it this way: A check box form field _by itself_ doesn't have any
function for doing anything other than inserting and removing the X in the
box.

Anything else you want it to do, such as making it bold or changing its
color or highlighting, would have to be done by a macro stored in the
document or its template. As an example, the following macro could be
assigned as the "on exit" macro of each check box in the form:

Sub BoldCheckedBoxes()
Dim fld As FormField

If ActiveDocument.ProtectionType wdNoProtection Then
ActiveDocument.Unprotect
End If

For Each fld In ActiveDocument.FormFields
With fld
If .Type = wdFieldFormCheckBox Then
If .CheckBox.Value = True Then
.Range.Paragraphs(1).Range.Bold = True
Else
.Range.Paragraphs(1).Range.Bold = False
End If
End If
End With
Next

ActiveDocument.Protect Type:=wdAllowOnlyFormFields, _
NoReset:=True
End Sub

Every paragraph that contains a checked box is set to bold (this could be
modified to make it a different color, or to apply a highlight), and every
paragraph that contains an unchecked box is set to "not bold".

The drawback of this, or any other method that involves macros, is that Word
is extremely suspicious of macros because of security threats. The only way
to be sure the macro will run on other users' computers is to digitally sign
it with a certificate, and that's quite expensive. Otherwise you have to
instruct form users how to enable macros.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

ComcoDG wrote:[color=blue][i]
Thanks for the response. I’m really looking more for a way to make a
check box more demonstrative, or stand out more. Instead of merely
checking a box, I would love to find some way to have the change in
appearance of the checked box be much more drastic. This would allow
it to stand out from the other unchecked options. When uncheck its
default appearance works just fine since it doesn’t stand out.

Lene, it seems like you are saying that the function I’m looking for
is not available. I can change the general appearance of the Check
box, regardless of whether it has been checked or not. But I cannot
have the appearance of a checked box change any more than the natural
check.

Bummer. Thanks anyhow.




Lene Fredborg;357963 Wrote:
A check box form field acts almost like a character. While the form
is unprotected, you can e.g. select a check box and apply a larger
font size or
change the font color (you can also apply e.g. bold font, but it will
not
make the check box look different). In addition, you can make the
check box
appear with colored fill. If you use the Borders and Shading dialog
box to
apply shading to the check box, the shading will only be visible if
you have
_not_ turned on Form Field Shading. Alternatively, you can apply
highlight
(but you do not have so many colors to select from) – the highlight
will be
visible even if you have turned on Form Field Shading.

--
Regards
Lene Fredborg - Microsoft MVP (Word)
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft
Word


"ComcoDG" wrote:



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 01:21 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.