Bob,
Maybe something like:
Sub ScratchMacro()
Dim oPar As Paragraph
For Each oPar In ActiveDocument.Paragraphs
oPar.Range.Sentences(1).Bold = True
Next
End Sub

Signature
Greg Maxey/Word MVP
A Peer in Peer to Peer Support
> I am trying to loop through the paragraphs of a document and
> select in turn the first sentence of each paragraph, and
[quoted text clipped - 10 lines]
>
> Bob Barger
bbarger - 01 Jan 2005 04:23 GMT
Greg,
Thank you very much! This is just what I was looking for.
Bob
-->Bob,
-->
-->Maybe something like:
-->
-->Sub ScratchMacro()
-->Dim oPar As Paragraph
-->For Each oPar In ActiveDocument.Paragraphs
--> oPar.Range.Sentences(1).Bold = True
-->Next
-->End Sub