Ok thanks. This needs to be as automated as possible so selecting the text
is not really an option.
Hi ML,
A bookmark isn't necessary. What *is* necessary is a completely unabiguous
means of defining the source and destination locations. if you can do that,
then you can define Range object variables that mark them, and so do the
copy using the FormattedText method.
Before anybody can give you a code sample for that, we need you to see if
you can describe the source and destination locations.

Signature
Regards
Jonathan West - Word MVP
www.intelligentdocuments.co.uk
Please reply to the newsgroup
Keep your VBA code safe, sign the ClassicVB petition www.classicvb.org
> Ok thanks. This needs to be as automated as possible so selecting the
> text is not really an option.
[quoted text clipped - 21 lines]
>>>>> multiple paragraphs in the section with the given style and it seems
>>>>> STYLEREF only copies the last paragraph of text.
ML - 04 Jul 2005 22:57 GMT
The destination I can mark with anything required as the user does not edit
anything near the location. The issue is the source which must allow for
user content. What options are there for marking it that can then be
selected with a range?
> Hi ML,
>
[quoted text clipped - 31 lines]
>>>>>> multiple paragraphs in the section with the given style and it seems
>>>>>> STYLEREF only copies the last paragraph of text.
Jonathan West - 05 Jul 2005 11:55 GMT
> The destination I can mark with anything required as the user does not
> edit anything near the location. The issue is the source which must allow
> for user content. What options are there for marking it that can then be
> selected with a range?
Most elements within a document have a Range property. Every Character,
Word, Sentence, Paragraph, Table, Row, Cell has a range. For instance, if
you can define the source text as occupying the first paragraph of the first
cell of the second row of the first table in the document, then we can code
that and do the transfer.

Signature
Regards
Jonathan West - Word MVP
www.intelligentdocuments.co.uk
Please reply to the newsgroup
Keep your VBA code safe, sign the ClassicVB petition www.classicvb.org
ML - 05 Jul 2005 22:05 GMT
Well, the section I want to copy will have a specific style used for the
text it encompasses. There may be other styles within but the start and end
should be the style I want. Is it possible to select all of this?
>> The destination I can mark with anything required as the user does not
>> edit anything near the location. The issue is the source which must
[quoted text clipped - 6 lines]
> first cell of the second row of the first table in the document, then we
> can code that and do the transfer.
Thirsty_4_knowledge - 28 Jul 2005 22:39 GMT
I am trying to do the same thing -
My document is split up by each page being a seperate section (to achieve
different headers/footers per page). I want to dump EVERYTHING from the 2nd
section/page on into the 1st section. Or would it be easier to just delete
the section breaks automatically somehow...
Thanks for your time!
> Hi ML,
>
[quoted text clipped - 31 lines]
> >>>>> multiple paragraphs in the section with the given style and it seems
> >>>>> STYLEREF only copies the last paragraph of text.