UPPERCASE

  • Thread starter Thread starter DogmaDot
  • Start date Start date
D

DogmaDot

How would one go about adding to the toolbar an icon for Upper Case, and an
icon for "Sentence Case"
 
Shift+F3 will toggle through the available case selections.

If you feel you can't do without buttons to click, create a couple of macros

Sub UpperCase()
Selection.Range.Case = wdUpperCase
End Sub

Sub SentenceCase()
Selection.Range.Case = wdTitleSentence
End Sub

and add them to the toolbar - http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top