P
Paul
In Word 2003 (Windows XP) is there a way search for cross-references?
The following macro will work
Dim oField As Field
For Each oField In ActiveDocument.Fields
If oField.Type = wdFieldRef Then
oField.Select
MsgBox oField.Code
End If
Next oField