D DogmaDot Dec 1, 2009 #1 How would one go about adding to the toolbar an icon for Upper Case, and an icon for "Sentence Case"
G Graham Mayor Dec 1, 2009 #2 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 <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
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 <>>< ><<> ><<> <>>< ><<> <>>< <>><<>