I have Integrated a tab name "Philip Prosenber" and a button (also added custom Bulb icon for this button) to run a VBA macro using office Custom UI Editor.
My .docm template "Springer Publishing" looks like this:

My plan is to insert a textbox for the user so that they could use predefined format which should look like this (with all requirements):

But someone suggest me that to:
- use a table otherwise it won't get the lightbulb automatically centered vertically in the text box.
- Use a quick part/building block instead of using code.
so I used following code to enter a table into .docm template:
Sub Insert_Table_Textbox()
Set newDoc = ActiveDocument
Set mytable = _
newDoc.Tables.Add(Range:=Selection.Range, NumRows:=1, _
NumColumns:=2)
mytable.Cell(1, 1).SetWidth ColumnWidth:=InchesToPoints(1.3), RulerStyle:=wdAdjustNone
mytable.Cell(1, 2).SetWidth ColumnWidth:=InchesToPoints(5.3), RulerStyle:=wdAdjustNone
mytable.Shading.BackgroundPatternColor = -603917569
mytable.Cell(1, 2).Range.InsertAfter "<Enter information content here>"
mytable.Cell(1, 1).Range.InsertAfter "icon" ''here I need to select insert icon which I already have embedded in given template.
mytable.Cell(1, 2).Range.Select
End Sub
how do I insert that bulb icon in cell 1? so that it should look like my required Table. bulb icon is already added to template using custom user interface editor by Microsoft.
Note: I am using MS word 2010-13 both. .docm template so that anyone can use it.



You need to adjust the cell's vertical alignment and paragraph format. Here is an example code that will do that and you should modify it to integrate with your existing code.