View Single Post
 
Old 04-20-2016, 05:58 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

I wasn't aware from your previous post that the content control was locked. Even then, it requires nothing more than unlocking it, which could be expedited with a macro like:
Code:
Sub Demo()
Dim CCtrl As ContentControl
With Selection
  If .Information(wdWithInTable) = False Then Exit Sub
  With .Rows(1)
    For Each CCtrl In .Range.ContentControls
      CCtrl.LockContentControl = False
      CCtrl.LockContents = False
    Next
    .Delete
  End With
End With
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote