One solution that does not always work is to make
absolutely sure that both documents in question are
building their identical list items on the exact same
picture in the sequence, but even this is no guarantee.
the best solution is to record a maco as you format the
bulleted list to exactly as it should be, then you can
rerun it whenever the formatting drops out, which at least
saves you having to do all the steps over again.
"an imperfect solution for an imperfect world."
--robin a.k.a. rbyteme
>-----Original Message-----
>For one particular Bullet style we've created, but not
two
>others, when we copy and paste from one document to
>another based on the same template, the bullets drop
>out. The style menu still says 'Table Bullet One'
>but if I go into Format|Bullets & Numbering, the thumnail
>pictures of available bullets have changed. Done note
>happen all the time, no pattern seen yet.
>
>Thanks.
>
>David
>.
>
in the interests of describing what is happening, you can use this
macro to check out what is really linked to what. Add on top of that
that any paras with manual formatting will keep their formatting when
they come over and restarting a list is manual formatting.
Use a scratch copy of your doc for this as it performs unwanted edits.
Public Sub ShowUsedListTemplates()
'her...@tdfa.com
Dim k As Long
On Error Resume Next
With ActiveDocument
For k = 1 To .ListTemplates.Count
With .ListTemplates(k)
If .Name = "" Then .Name = Format(k)
End With
Next
For k = 1 To .ListParagraphs.Count
With .ListParagraphs(k).Range
.InsertBefore "[" & .ListFormat.ListTemplate.Name &
"]"
End With
Next
End With
End Sub
A simple 'inline fix' is to use format painter to copy the formatting
from a good list.
"David Iacoponi" <David.I...@lazard.com> was spinning a yarn that
went like this:
>For one particular Bullet style we've created, but not two
>others, when we copy and paste from one document to
>another based on the same template, the bullets drop
>out. The style menu still says 'Table Bullet One'
>but if I go into Format|Bullets & Numbering, the thumnail
>pictures of available bullets have changed. Done note
>happen all the time, no pattern seen yet.
>
>Thanks.
>
>David
Steve Hudson, Word Heretic
HDK List MVP
Word tools: her...@tdfa.com
Please post replies/further questions to the newsgroup so that all may benefit.
If I don't provide enough information, please feel free to ask for more :-)
If this helps anyone else, great, and if you have
contra-indications to this, pls let me know (via email if
you would be so kind)
>-----Original Message-----
>For one particular Bullet style we've created, but not
two
>others, when we copy and paste from one document to
>another based on the same template, the bullets drop
>out. The style menu still says 'Table Bullet One'
>but if I go into Format|Bullets & Numbering, the thumnail
>pictures of available bullets have changed. Done note
>happen all the time, no pattern seen yet.
>
>Thanks.
>
>David
>.
>