P
Paul J
It is common practice to Insert, Fields into a document and then
Insert,Fields within them (nested).
For example:
{ MACROBUTTON TestMacro { SYMBOL 254 \a \f Wingdings \s 12 \* MERGEFORMAT
}}
I know that Word VBA can also be used to add a field to a document.
For example:
Selection.Fields.Add Range:=Selection.Range, Type:=wdFieldEmpty, _
Text:="MACROBUTTON TestMacro X ", _
PreserveFormatting:=False
or
Selection.Fields.Add Range:=Selection.Range, Type:=wdFieldEmpty, _
Text:="SYMBOL 254 \a \f Wingdings \s 12 ", PreserveFormatting:=True
BUT is it possible for Word VBA to add "nested" fields to a document?
As usual, any help would be greatly appreciated.
Paul J
Insert,Fields within them (nested).
For example:
{ MACROBUTTON TestMacro { SYMBOL 254 \a \f Wingdings \s 12 \* MERGEFORMAT
}}
I know that Word VBA can also be used to add a field to a document.
For example:
Selection.Fields.Add Range:=Selection.Range, Type:=wdFieldEmpty, _
Text:="MACROBUTTON TestMacro X ", _
PreserveFormatting:=False
or
Selection.Fields.Add Range:=Selection.Range, Type:=wdFieldEmpty, _
Text:="SYMBOL 254 \a \f Wingdings \s 12 ", PreserveFormatting:=True
BUT is it possible for Word VBA to add "nested" fields to a document?
As usual, any help would be greatly appreciated.
Paul J