Hi Steve,
It has always worked for me, not that I use it every day though.
Regards from Paris,
Doug Robbins - Word MVP
> G'day "Doug Robbins" <dkr@REMOVEmvps.org>,
>
[quoted text clipped - 25 lines]
>>
>>myrange.Select
Shauna Kelly - 26 Jun 2005 05:45 GMT
Hi Doug, Steve
I find that Bookmarks("\page") fails if a row in a table breaks across a
page.
If the cursor in a row that breaks, on the page that the row starts, then
Selection.Bookmarks("\page").Range will return the whole of that page plus
the entire table going forward to the end of the table. If the cursor is in
a row that breaks, on a middle page of the row (ie if the row spans 3 pages
or more), then Selection.Bookmarks("\page").Range returns the entire table.
If the cursor is in a row that breaks, but on the last page of the table,
then Selection.Bookmarks("\page").Range returns the whole of that page plus
the entire table, going back to the beginning of the table.
Cheers
Shauna
Shauna Kelly. Microsoft MVP.
http://www.shaunakelly.com/word
> Hi Steve,
>
[quoted text clipped - 31 lines]
>>>
>>>myrange.Select
Howard Kaikow - 26 Jun 2005 16:58 GMT
I find the following to be a safe way to do things.
Also, helps wean fokes off the selection object,
dim rng as Word.Range
set rng = activedocument.content
with rng
.collapse direction:=wdCollapseStart
.select
end with

Signature
http://www.standards.com/; See Howard Kaikow's web site.