![]() |
|
#6
|
||||
|
||||
|
Hi Brock,
The 'Exit For' was there because your post implied that you only wanted the very next Content Control, not all of them, and you didn't indicate anything about whether the next Content Control had the same tag. Since it seems only some of the Content Controls have the 'ContainerContents' tag, it would be more efficient to do it this way: Code:
Dim strTmp As String, i As Integer
With ActiveDocument.SelectContentControlsByTag("ContainerContents")
For i = 1 To .Count
strTmp = strTmp & .Item(i).Range.Text
Next
End With
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Table of Content Eat up RAM Resources | Tommy | Word | 0 | 08-23-2010 10:08 PM |
| need to grab content of certain fields? | erik2000 | Word | 0 | 02-19-2010 04:19 AM |
| Package for CD with links to Windows media player content and Flash Shockwave content | hectorh | PowerPoint | 4 | 10-15-2009 12:22 PM |
share content between documents?
|
albytrott | Word | 1 | 10-08-2009 08:27 AM |
| Templates: automatic text generation from Rich Text content control | Chickenmunga | Word | 0 | 10-01-2008 11:16 AM |