Hi there,
I can find Text in word via:
Word.Range range = wordApp.ActiveDocument.Content;
Word.Find find = range.Find;
find.Text = "xxx";
find.ClearFormatting();
find.Execute(ref missing, ref missing, ref missing, ref missing, ref missing,
ref missing, ref missing, ref missing, ref missing, ref missing,
ref missing, ref missing, ref missing, ref missing, ref missing);
This tells me if the text ist found. But I need the range of the found text-piece. I really don't know how to get it. Would be nice if you could help me out.
Greets
Simon