>I want to eliminate the number, bullet, and indent/outdent buttons and
>their
[quoted text clipped - 3 lines]
> written some VBA functions that accomplish the same thing without the
> bugs.
You don't need VBA for this. Create a custom template for your documents.
Then, with the template open, go to Tools Customize. In the Customize dialog
that appears, set it so that changes will be saved in your template rather
than in normal.dot, and then click any button you want to get rid of and
drag it off the toolbar.

Signature
Regards
Jonathan West - Word MVP
www.intelligentdocuments.co.uk
Please reply to the newsgroup
Keith Brickey - 10 Nov 2004 23:35 GMT
I have custom template now that I use to create a new document. The problem
is the the document gets distributed throughout a large community of users,
and many who edit it do not have the template. (Another factor may be that
not all users have the same version of Word.)
I end up with documents containing a lot of "bastardized" styles created by
Word, such as "Stylename CHAR CHAR CHAR CHAR" and these cause confusion
among the users of the document. My idea is, as much as possible, to
programmatically remove styles that are not in the template and strip out as
much as possible, the Word functionality that causes these problems,
replacing that functionality with simple VBA routines known to work
reliably.
> >I want to eliminate the number, bullet, and indent/outdent buttons and
> >their
[quoted text clipped - 9 lines]
> than in normal.dot, and then click any button you want to get rid of and
> drag it off the toolbar.
Jonathan West - 10 Nov 2004 23:43 GMT
>I have custom template now that I use to create a new document. The problem
> is the the document gets distributed throughout a large community of
[quoted text clipped - 10 lines]
> replacing that functionality with simple VBA routines known to work
> reliably.
Toolbars don't get saved with documents. VBA code *can* be saved in a
document rather than a template, but VBA code in a document simply will not
run if the user is on Word 2000 or later and has macro security set to high,
unless the code is digially signed and the user chooses to accept the
digital signature. If they are working in Word 97 or Word 2000, any edit of
the document will break the digital signature.
Therefore, you need to distribute the template and encourage your users to
use it. This article may give you some ideas in that direction.
Creating Custom Toolbars for Templates
http://pubs.logicalexpressions.com/Pub0009/LPMArticle.asp?ID=262

Signature
Regards
Jonathan West - Word MVP
www.intelligentdocuments.co.uk
Please reply to the newsgroup