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
Word MVP web site
http://word.mvps.org
DogmaDot wrote:
How would one go about adding to the toolbar an icon for Upper Case,
and an icon for "Sentence Case"