View Single Post
 
Old 08-27-2015, 08:27 AM
vss712 vss712 is offline Windows 7 64bit Office 2010 32bit
Novice
 
Join Date: Jun 2011
Posts: 5
vss712 is on a distinguished road
Default

PS -
Each of the controls for "AccountName" are bounding boxes. I ensure they are unlocked:

Still no luck with anything in the Page Headers. I do have Initial Page Header set to none, so the page header resides in another section, if that makes a difference.

Sub CCLoaderHiMum()
Dim aCC As ContentControl, aRng As Range

For Each aRng In ActiveDocument.StoryRanges


For Each aCC In aRng.ContentControls

If aCC.Title = "AccountName" Then
aCC.LockContents = False
aCC.Range.Text = "hi mum"
aCC.Range.Font.ColorIndex = wdBlack
aCC.LockContents = True
End If

Next aCC

Next aRng
End Sub
Reply With Quote