View Single Post
 
Old 10-09-2014, 11:07 AM
gmaxey gmaxey is offline Windows 7 32bit Office 2010 (Version 14.0)
Expert
 
Join Date: May 2010
Location: Brasstown, NC
Posts: 1,421
gmaxey is a jewel in the roughgmaxey is a jewel in the roughgmaxey is a jewel in the roughgmaxey is a jewel in the rough
Default

Why don't you just add the word "County" after the content control?

To answer your question. Yes. Assuming the CC titled "County" add the following to the ThisDocument module of your template project:

Code:
Private Sub Document_ContentControlOnExit(ByVal CC As ContentControl, Cancel As Boolean)
  Select Case CC.Title
    Case "County"
      If Not CC.ShowingPlaceholderText Then CC.Range.Text = CC.Range.Text & " County"
  End Select
End Sub
__________________
Greg Maxey
Please visit my web site at http://www.gregmaxey.com/
Reply With Quote