"then do .Select() on another range"
and how exactly would you do that?
The Range object does not allow non-contiguous ranges within VBA. It has ONE
.Start and ONE .End property.
Even if you use Ctrl and select non-contiguous areas (ranges) ANY action via
code (VBA) will only action against the last range. The other oarts are
ignored.
Yes, you can action non-contiguous selected ranges in the GUI, but you can
NOT do so in VBA - even if non-contiguous ranges are in fact selected with
Ctrl.
Thanks Jay. Dude, I wonder if I could .Select() one range and then use
WinAPI SendInput to like hold down the Ctrl button and then do .Select() on
another range. Man, that would be awesome. Sounds like a blog post that an
MVP would do to show off...
I'd like to use the PIAs to set the document selection to include
multiple non-connected ranges throughout my document. I know you can
[quoted text clipped - 4 lines]
(
http://support.microsoft.com/?kbid=288424), so I doubt that it's possible
through the PIAs either.