Hello,
I want to add building blocks in my Word Document by VBA.
How can I place them correctly?
How can I place them in the footer?
Code:
ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageFooter
ActiveDocument.Range(ActiveDocument.Bookmarks("start").Range.Start + 1, ActiveDocument.Bookmarks("ende").Range.Start).Select
Set objTemplate = Templates(1)
Set objBB = objTemplate.BuildingBlockEntries.Item("Fusszeile_geschäftlich_DE")
objBB.Insert Selection.Range
ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument
does not work.. :-(
Thanks,
Andreas