View Single Post
  #5   Report Post  
Doug Robbins
 
Posts: n/a
Default

Hi Greg,

The former returns either True or False and the latter returns 1 or 0.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP
"Greg Maxey" wrote in message
...
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?