Selecting Text according using two addresses in the document
:
Return to List
' Below is an example of storing a location in a variable
CharPos1 = Selection.Range.START
' Below will select text between the two locations: CharPos1, CharPos2
ActiveDocument.Range(START:=CharPos1, End:=CharPos2).Select
Note to Webmaster