View Single Post
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default Capitalize first letter of each word

On Sun, 27 Sep 2009 19:26:06 +0100, TapouT
wrote:


Does anybody know how to create a style in Word 2007 to capitalize first
letter of each word
So That Each Word Starts With A Capital Letter
I know that you can do it manually through fonts but would like it to
do it automatically in a style

Thanks for reading the post
TapouT


Sorry, there is no way to include that in a style.

If you use Change Case Capitalize Each Word a lot and you want a
quicker way to apply it, do this:

- Copy this macro into your Normal.dotm template, using the
instructions at http://www.gmayor.com/installing_macro.htm.


Sub CapitalizeEachWord()
Selection.Paragraphs(1).Range.Case = wdTitleWord
End Sub


- Right-click the Quick Access Toolbar and choose Customize.

- In the Customize dialog, set the category to Macros. Click the name
of the CapitalizeEachWord macro and then click the Add button.

- (optional) Click the Modify button, choose an icon for the new
button, and edit the name that its tooltip will display.

- Click OK.

Now, when you've typed the heading or other text you want capitalized,
with the cursor still in that paragraph, click the button on the Quick
Access Toolbar.

Alternatively, you can use the Keyboard shortcuts: Customize button in
the Customize dialog to assign a shortcut for the macro.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit.