
Signature
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://www.mvps.org/word
> Thanks, Jay'. Your suggestion works fine for page references, but
> some other references still remain cryptic, for example
[quoted text clipped - 39 lines]
>>> Wolfgang,
>>> Santab
I do see the faint dotted underline.
Both Ctrl+* (Susan) and clicking the ? button (Jay) only switch the
hidden font attributes ON, so now I see ? signs after every
paragraph, and dots (.) for every space in addition to the funny
{XE "toString()"}{XE "String:toString()"}
Wolfgang
>Hi, Wolfgang,
>
[quoted text clipped - 46 lines]
>>>> Wolfgang,
>>>> Santab
Suzanne S. Barnhill - 18 Jul 2003 00:28 GMT
In that case, "Hidden text" is checked on the View tab of Tools | Options,
and you must clear the check box. The ¶ button just toggles between display
of *all* nonprinting characters and any specific ones you have checked on
the View tab.
--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://www.mvps.org/word
> I do see the faint dotted underline.
> Both Ctrl+* (Susan) and clicking the ¶ button (Jay) only switch the
[quoted text clipped - 8 lines]
> >The XE fields are different -- they're formatted with the Hidden font
> >attribute, so you switch them off by clicking the ¶ button on the
toolbar.
> >(Before you turn them off, look carefully and you should be able to see the
> >dotted underline that indicates Hidden text.)
[quoted text clipped - 47 lines]
> >>>> Wolfgang,
> >>>> Santab
Doug Robbins - Word MVP - 18 Jul 2003 10:39 GMT
Hi Wolfgang,
If there is other hidden text in the document that you want to be able to
see, without the XE fields altering the layout of the document, use the
following macro:
' Macro created 21 March 1999 by Doug Robbins to hide XE fields
'
Dim axe As Field
For Each axe In ActiveDocument.Fields
axe.Select
If Mid(Selection.Text, 3, 2) = "XE" Then
RangeStart =
Selection.Information(wdHorizontalPositionRelativeToPage)
Selection.Collapse Direction:=wdCollapseEnd
RangeEnd = Selection.Information(wdHorizontalPositionRelativeToPage)
RangeLength = RangeEnd - RangeStart
axe.Select
Selection.Font.ColorIndex = wdWhite
Selection.Collapse Direction:=wdCollapseEnd
Selection.Fields.Add Range:=Selection.Range, Type:=wdFieldEmpty,
Text:= _
"ADVANCE \l " & RangeLength & """, PreserveFormatting:=False"
End If
Next axe

Signature
Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a consulting basis.
Hope this helps
Doug Robbins - Word MVP
> I do see the faint dotted underline.
> Both Ctrl+* (Susan) and clicking the ? button (Jay) only switch the
[quoted text clipped - 54 lines]
> >>>> Wolfgang,
> >>>> Santab