Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

print list of autotexts/building blocks in Word 2007

12 views
Skip to first unread message

susann

unread,
Apr 28, 2008, 12:56:00 AM4/28/08
to
I have a large list of autotexts/building blocks in Word 2007. I'm compiling
a list of the commonly used ones for training and wanted to know if there was
an easy way to print them all out onto the page, rather than going through
and inserting them one by one :(

I tried to print and select under 'Print What' selected Building Blocks
however this has crashed my Word several times so I've given up.

Is there another way to do this?

Thanks
Susan

Doug Robbins - Word MVP

unread,
Apr 28, 2008, 2:18:43 AM4/28/08
to
If it is just the autotext entries that you are after, the following macro
will create a table of them in the active document:

With ActiveDocument
.Range.InsertBefore "Name" & vbTab & "Value" & vbCr
For i = 1 To .AttachedTemplate.AutoTextEntries.Count
.Range.InsertAfter .AttachedTemplate.AutoTextEntries(i).Name & vbTab & _
.AttachedTemplate.AutoTextEntries(i).Value & vbCr
Next i
.Range.Paragraphs(.Paragraphs.Count).Range.Delete
.Range.ConvertToTable
End With


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"susann" <sus...@discussions.microsoft.com> wrote in message
news:650790B7-792E-44A7...@microsoft.com...

Tony Jollans

unread,
Apr 28, 2008, 5:41:08 AM4/28/08
to
You should be able to print Building Blocks without a crash. It may be worth
trying to print to a different printer - or, possible, try repairing Word:
From the Office button, select Word Options, then select the Resources tab
and run Office Diagnostics.

--
Enjoy,
Tony

"susann" <sus...@discussions.microsoft.com> wrote in message
news:650790B7-792E-44A7...@microsoft.com...

Doug Robbins - Word MVP

unread,
Apr 28, 2008, 6:35:21 AM4/28/08
to
If you do want the Building Blocks and are able to follow Tony's advice, be
prepared for a 100 page document to be printed. That's how many pages were
in the .pdf file that I created by printing the autotext (4 entries) and
building blocks to the Adobe PDF printer.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"susann" <sus...@discussions.microsoft.com> wrote in message
news:650790B7-792E-44A7...@microsoft.com...

Tony Jollans

unread,
Apr 28, 2008, 10:22:44 AM4/28/08
to
And, to be perfectly honest, they're not really in a suitable format for a
training manual.

--
Enjoy,
Tony

"Doug Robbins - Word MVP" <d...@REMOVECAPSmvps.org> wrote in message
news:ed1AUuRq...@TK2MSFTNGP05.phx.gbl...

susann

unread,
Apr 28, 2008, 7:45:01 PM4/28/08
to
Thanks Doug. This is going to sound like a silly question, but what do I do
with the macro? Do I create a new one and then run it?

My VB skills are practically non-existent so am a little lost...

Thanks
Susan

susann

unread,
Apr 28, 2008, 7:50:01 PM4/28/08
to
Please ignore my last message - I figured it out (duh).

Cheers

0 new messages