HELP! Light Gray ][ 's have appeared!

M

MChrist

I'm using Word 2k2 and this noon, I saved the document I was working on and
when I opened it up again, I've have these funky light gray ][ all over the
document. What are they, and how do I get rid of them?

TIA

Mark
 
G

garfield-n-odie

The marks probably indicate bookmarks. You can delete them from
the Insert->Bookmark menu.
 
J

Jay Freedman

You can leave them in the document but make them invisible -- lots
less work!

In Tools > Options > View, uncheck "Bookmarks" and click OK.

--
Regards,
Jay Freedman
Microsoft Word MVP

The marks probably indicate bookmarks. You can delete them from
the Insert->Bookmark menu.
I'm using Word 2k2 and this noon, I saved the document I was working on and
when I opened it up again, I've have these funky light gray ][ all over the
document. What are they, and how do I get rid of them?

TIA

Mark
 
G

Greg Maxey

Or kill them all with a simple macro:

Sub DeleteBookMarks()
Dim oBkMark As Bookmark
For Each oBkMark In ActiveDocument.Bookmarks
oBkMark.Delete
Next
End Sub


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

Jay said:
You can leave them in the document but make them invisible -- lots
less work!

In Tools > Options > View, uncheck "Bookmarks" and click OK.

The marks probably indicate bookmarks. You can delete them from
the Insert->Bookmark menu.
I'm using Word 2k2 and this noon, I saved the document I was
working on and when I opened it up again, I've have these funky
light gray ][ all over the document. What are they, and how do I
get rid of them?

TIA

Mark
 
Top