Hi
On from the 1st line of my document I would to select the range, after the
10th character for 5 characters and copy to clipboard or name as string.
I think its an easy when you know how thing
Thanks in advance
FIRSTROUNDKO - 20 Jul 2007 10:11 GMT
I found the solution
Set myrange = ActiveDocument.Range( _
Start:=ActiveDocument.Paragraphs(1).Range.Start + 11, _
End:=ActiveDocument.Paragraphs(1).Range.Start + 16)
myrange.Select
>Hi
>
[quoted text clipped - 4 lines]
>
>Thanks in advance