This example changes the first word in the selection to uppercase.
Selection.Words(1).Case = wdUpperCase
This example capitalizes the first letter of each sentence in the first paragraph of the document..
Set myRange = ActiveDocument.Paragraphs(1).Range
For Each Sent In myRange.Sentences
Sent.Case = wdTitleSentence
Next Sent