View Single Post
  #4   Report Post  
Greg Maxey
 
Posts: n/a
Default

Doug,

What is the difference between:
ActiveDocument.FormFields("Bookmarkname").CheckBox .Value
and:
ActiveDocument.FormFields("Check1").Result

Thanks



--
Greg Maxey/Word MVP
See:
http://gregmaxey.mvps.org/word_tips.htm
For some helpful tips using Word.

Doug Robbins wrote:
ActiveDocument.FormFields("Bookmarkname").CheckBox .Value


Doug Robbins - Word MVP
"Robert Kleinschmidt" Robert
wrote in message
...
I want to use the Checked or Unchecked state of a FORMCHECKBOX to
control the
display of text in a template. I can do this using a FORMTEXT or
FORMDROPDOWN
field with a bookmark and "Calculate on exit" selected.

With either FORMTEXT or FORMDROPDOWN I can write
{ IF {bookmark} = "X" text1 text2 }
and it works fine, but how do I do this with FORMCHECKBOX?