Selection Word

  • Thread starter FIRSTROUNDKO via OfficeKB.com
  • Start date
F

FIRSTROUNDKO via OfficeKB.com

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
 
F

FIRSTROUNDKO via OfficeKB.com

I found the solution


Set myrange = ActiveDocument.Range( _
Start:=ActiveDocument.Paragraphs(1).Range.Start + 11, _
End:=ActiveDocument.Paragraphs(1).Range.Start + 16)
myrange.Select
 
Top