Thanks! I haven't used them much, but they are quite cool - I do like that I can set a title, should make management a little easier.
However, I have the same issue as I do with bookmarks, when I place the insertion point in the middle of my document, how can I insert multiple blocks one after another? As it stands the insertion point remains at the top / front and a subsequent content control is inserted inside the recent control. Say I want to quickly import three user selected documents:
'A basic Word macro coded by Greg Maxey / modified by Kay
Dim oRng As ContentControl
Set oRng = ActiveDocument.ContentControls.Add(wdContentControlRichText)
oRng.Range.InsertFile ("E:\Templates\Template Building Blocks\block1.docx")
oRng.Title = "This is a great block!"
oRng.Range.Select
ActiveDocument.Fields.Update
Thank you
Kay