suppress capitalization for bulleted lists

D

David Newmarch

Is there a way to suppress initial capitalization for bulleted lists? This is
for Word 2007.

I can't see how to do it using the AutoCorrect settings, and I'd prefer not
to just disable AutoCorrect, but perhaps it can be done with code or a macro,
maybe? Suggestions would be much appreciated.
 
C

Cindy M.

Hi =?Utf-8?B?RGF2aWQgTmV3bWFyY2g=?=,
Is there a way to suppress initial capitalization for bulleted lists? This is
for Word 2007.

I can't see how to do it using the AutoCorrect settings, and I'd prefer not
to just disable AutoCorrect, but perhaps it can be done with code or a macro,
maybe? Suggestions would be much appreciated.
There's nothing that will let you suppress AutoCorrect capitalization for
bulleted lists - it's an all-or-nothing proposition.

Simplest would be a macro that would let you toggle the AutoCorrect option
on/off: when you're working in a bulleted list run the macro (from a keyboard
shortcut, for example) and when you're finished, run it again.

Sub ToggleAutoCapizalization()
AutoCorrect.CorrectSentenceCaps = Not _
AutoCorrect.CorrectSentenceCaps
End Sub()

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 17 2005)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any follow question or reply
in the newsgroup and not by e-mail :)
 

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