Can VBA process autotext (quickparts) stored in the current docume

P

Peter

Can VBA process autotext (quickparts) stored in the current document?
I can process autotext entries (quickparts) stored in the normal template
using
For i = 1 To NormalTemplate.AutoTextEntries.Count
With NormalTemplate.AutoTextEntries(i)

How can I process autotext stored the active document?

Thanks in advance for any assistance,
Peter Evans
 
J

Jay Freedman

Can VBA process autotext (quickparts) stored in the current document?
I can process autotext entries (quickparts) stored in the normal template
using
For i = 1 To NormalTemplate.AutoTextEntries.Count
With NormalTemplate.AutoTextEntries(i)

How can I process autotext stored the active document?

Thanks in advance for any assistance,
Peter Evans

That's an easy one to answer: Quick Parts cannot be stored in any document, only
in templates. In Word 2003 and earlier, AutoText entries cannot be stored in
documents, either.

I suggest you read Greg Maxey's extensive articles on Building Blocks, Quick
Parts, and AutoText:

http://gregmaxey.mvps.org/Word2007_Building_Blocks_&_AutoText.htm
http://gregmaxey.mvps.org/Buiild_Employ_Custom_BB_Gallery.htm
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top