I use something like this:
doc.Content.Find.Font.Name = \"Times New Roman\";
but when I step through the code the Name property doesn\'t change
Thanks for your reply, but no you don't get a new Find object each time you use dot notation. The problem is you shouldn't use Doc.Content.Find in this kind of situation. Instead you have to create a new Range object and use its Find. Something like this:
Word.Range range = doc.Range(0, doc.Content.End);