#1   Report Post  
Posted to microsoft.public.word.docmanagement
whatever whatever is offline
external usenet poster
 
Posts: 3
Default Printing a Checklist

Quick and possibly stupid question. Is there a way to create a list in Word
that has check boxes next to line items that, when checked, are the only
items that print out? Thanks in advance!
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default Printing a Checklist

I guess you mean that only the checked items print out, not that only the
check boxes print out. The latter is easy; the former is difficult.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

"whatever" wrote in message
...
Quick and possibly stupid question. Is there a way to create a list in
Word
that has check boxes next to line items that, when checked, are the only
items that print out? Thanks in advance!



  #3   Report Post  
Posted to microsoft.public.word.docmanagement
whatever whatever is offline
external usenet poster
 
Posts: 3
Default Printing a Checklist

I found this macro:

With ActiveDocument
..Unprotect
If .FormFields("Check1").CheckBox.Value = False Then
..Bookmarks ("CheckBox1Text").Range.Font.Hidden=True
Else
..Bookmarks("CheckBox1Text").Range.Font.Hidden=Fal se
End If
..Protect wdAllowOnlyFormFields, NoReset
End With


It seems to work fine. I just need to figure out how to hide the boxes now


"Suzanne S. Barnhill" wrote:

I guess you mean that only the checked items print out, not that only the
check boxes print out. The latter is easy; the former is difficult.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

"whatever" wrote in message
...
Quick and possibly stupid question. Is there a way to create a list in
Word
that has check boxes next to line items that, when checked, are the only
items that print out? Thanks in advance!




  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Printing a Checklist

You need to hide the check box as well as the text field

With ActiveDocument
..Unprotect
If .FormFields("Check1").CheckBox.Value = False Then
..Bookmarks("CheckBox1Text").Range.Font.Hidden = True
..Bookmarks("Check1").Range.Font.Hidden = True
Else
..Bookmarks("CheckBox1Text").Range.Font.Hidden = False
..Bookmarks("Check1").Range.Font.Hidden = False
End If
..Protect wdAllowOnlyFormFields, NoReset
End With

However you will need a macro to reet the form as once hidden there is no
way of re-accessing the checkbox to un-hide the hidden stuff

With ActiveDocument
.Unprotect
.Range.Select
Selection.Font.Hidden = False
.Protect wdAllowOnlyFormFields, NoReset
End With

See also http://gregmaxey.mvps.org/Toggle_Data_Display.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



whatever wrote:
I found this macro:

With ActiveDocument
.Unprotect
If .FormFields("Check1").CheckBox.Value = False Then
.Bookmarks ("CheckBox1Text").Range.Font.Hidden=True
Else
.Bookmarks("CheckBox1Text").Range.Font.Hidden=Fals e
End If
.Protect wdAllowOnlyFormFields, NoReset
End With


It seems to work fine. I just need to figure out how to hide the
boxes now

"Suzanne S. Barnhill" wrote:

I guess you mean that only the checked items print out, not that
only the check boxes print out. The latter is easy; the former is
difficult.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

"whatever" wrote in message
...
Quick and possibly stupid question. Is there a way to create a
list in Word
that has check boxes next to line items that, when checked, are the
only items that print out? Thanks in advance!



Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I make a checklist in which only one box can be selected? jreiss1010 Microsoft Word Help 2 October 31st 06 03:29 AM
Checklist Boxes sunrosejenn Microsoft Word Help 1 March 23rd 06 05:43 PM
checklist dpmando Tables 4 July 9th 05 05:34 PM
Checklist for PDA a144mb Microsoft Word Help 2 March 17th 05 07:41 PM
Where can I find a cleaning checklist? cdouglass Mailmerge 1 February 1st 05 12:54 AM


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

Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"