View Single Post
 
Old 11-01-2013, 02:38 AM
SaneMan SaneMan is offline Windows 7 64bit Office 2007
Novice
 
Join Date: Jan 2011
Posts: 20
SaneMan is on a distinguished road
Default

Quote:
Originally Posted by macropod View Post
Hi Antony,

Here's a simple demo of inserting a QUOTE field at the selection:
Code:
Sub Demo()
With Selection
  .Fields.Add Range:=.Range, Type:=wdFieldEmpty, _
    PreserveFormatting:=False, Text:="QUOTE" & Chr(34) & "Text to display" & Chr(34)
  .Fields.Update
End With
End Sub
Worked perfectly. Thanks a bunch!
Reply With Quote