View Single Post
  #2  
Old June 2nd, 2010, 04:37 PM posted to microsoft.public.word.docmanagement
Stefan Blom[_3_]
external usenet poster
 
Posts: 4,556
Default How to link bullet icon to List Bullet style?

You can intercept the built-in FormatBulletDefault command by placing this
simple macro in your normal.dotm:

Sub FormatBulletDefault()
Selection.Paragraphs(1).Style = wdStyleListBullet
End Sub

For assistance, see http://www.gmayor.com/installing_macro.htm.

But note that this macro will only run if you click the Bullet button; it
doesn't run if you press the arrow on the Bullet button (which allows you to
choose a specific bullet format).

To apply the List Bullet style, it's actually easier to make use of the built-in
Ctrl+Shift+L shortcut.

--
Stefan Blom
Microsoft Word MVP
(Message posted via msnews.microsoft.com)



"Sandra" wrote in message
...
In 2007, how can I link the bullet icon to the List Bullet style?
Thanks!
Sandra