D
Dennis
When attempting to find the SYMBOL fields in a word doc
(using VB), I can't find them. The syntax I'm using is:
For Each myField In wordDoc.Fields
If myField.Type = wdFieldSymbol Then
MsgBox myField.Code.Text
End If
Next myField
wordDoc is the active document. It just returns zero, even
though I have multiple bullet-fields defined as:
{SYMBOL 63 \f"CommonBullets" \s 12}
My goal is to replace the code inside with:
"symbol 216 \f"Wingdings" \s 12"
But unless I can find the fields, I can't change the text.
Any help would be greatly appreciated.
(using VB), I can't find them. The syntax I'm using is:
For Each myField In wordDoc.Fields
If myField.Type = wdFieldSymbol Then
MsgBox myField.Code.Text
End If
Next myField
wordDoc is the active document. It just returns zero, even
though I have multiple bullet-fields defined as:
{SYMBOL 63 \f"CommonBullets" \s 12}
My goal is to replace the code inside with:
"symbol 216 \f"Wingdings" \s 12"
But unless I can find the fields, I can't change the text.
Any help would be greatly appreciated.