Could someone please help with the code on how to clear the current
selection. Not delete the contents, simply un-highlight what is currently
selected.
Thanks
Chad
Tony Jollans - 30 Oct 2007 20:59 GMT
Selection.Collapse wdcollapseEnd
will do it, and leave the cursor (insertion point) at the end of the
selectiion
Selection.Collapse wdcollapseStart
will do the same, but leave the cursor (insertion point) at the start of the
selectiion

Signature
Enjoy,
Tony
> Could someone please help with the code on how to clear the current
> selection. Not delete the contents, simply un-highlight what is currently
> selected.
>
> Thanks
> Chad
Jay Freedman - 30 Oct 2007 21:05 GMT
> Could someone please help with the code on how to clear the current
> selection. Not delete the contents, simply un-highlight what is
> currently selected.
>
> Thanks
> Chad
Either
Selection.Collapse Direction:=wdCollapseStart
or
Selection.Collapse Direction:=wdCollapseEnd
depending on where you want the insertion point to land.

Signature
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.