I have a word document contains some content control (Rich text, check boxes). Normally I can call content control:
ActiveDocument.ContentControls.item(1).Range.Text = "something"
ActiveDocument.ContentControls.item(1).Checked = True
But some of the control inside shapes (text box) and they can not be called this way.
How can I use these controls?