You don't say what doesn't work any more. Maybe the problem is with the
settings under Tools>Options>View or Tools>Options>Print which are what
control the display/printing of hidden text.
I don't see anything wrong with your code, but better to use
ActiveDocument.Bookmarks("bk1A").Range.Font.Hidden = True
as it does not require the movement of the insertion point.

Signature
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
> Hello,
> I'm trying to write a macro that will toggle text in a bookmark between
[quoted text clipped - 21 lines]
>
> End Sub
Dave - 28 Jul 2005 01:12 GMT
Thanks Doug!! I should have elaborated.
When this macro is ran, the font does not change to hidden.
Seems like the problem is this line of code:
Set vCheck1 = ActiveDocument.FormFields("chk1A").Range
When I add a break to the code following this line, the value of vCheck is
neither True or False. I'm new to the word programming, should I not have
this macro run on exit?
> You don't say what doesn't work any more. Maybe the problem is with the
> settings under Tools>Options>View or Tools>Options>Print which are what
[quoted text clipped - 31 lines]
> >
> > End Sub
Doug Robbins - 28 Jul 2005 20:39 GMT
You need to use the following construction:
Set vCheck1 = ActiveDocument.FormFields("chk1A").CheckBox.Value

Signature
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
> Thanks Doug!! I should have elaborated.
> When this macro is ran, the font does not change to hidden.
[quoted text clipped - 41 lines]
>> >
>> > End Sub