View Single Post
 
Old 09-27-2018, 11:05 AM
therexjones therexjones is offline Windows 10 Office 2016
Novice
 
Join Date: Sep 2018
Posts: 6
therexjones is on a distinguished road
Default

I reversed the "True/False" parts and now this does exactly what I was looking for. Thank you!

Quote:
Originally Posted by gmaxey View Post
Code:
Sub ScratchMacro()
'A basic Word macro coded by Greg Maxey, http://gregmaxey.com/word_tips.html, 9/27/2018
Dim oCC As ContentControl
Dim oCol As New Collection
  For Each oCC In ActiveDocument.ContentControls
    oCC.LockContents = False
  Next oCC
  On Error Resume Next
  For Each oCC In ActiveDocument.ContentControls
    oCol.Add oCC.Title, oCC.Title
    If Err.Number = 0 Then oCC.LockContents = True
    Err.Clear
  Next oCC
lbl_Exit:
  Exit Sub
End Sub
Reply With Quote