I had an idea... since each of these notes pages is started with a
*heading-notes style and ends with a page break, can't I somehow search
the document for the*heading-notes style, then define a section from
that style to the next page break, and then delete -- loop through the
entire document repeating that process?
> I posted this as a vague question some time back, and was asked for
> more detail... so, I'll try and clarify:
[quoted text clipped - 29 lines]
> I look forward to your feedback, and feel free to ask questions if
> anything needs clarification.
Russ - 12 Aug 2006 23:48 GMT
Jstengren,
Reply in middle of text.
> I had an idea... since each of these notes pages is started with a
> *heading-notes style and ends with a page break, can't I somehow search
[quoted text clipped - 27 lines]
>> If there was a way to just say, "Delete all sections that are
>> bookmarked within this document." we may have a solution.
Dim aBookMark As Word.Bookmark
For Each aBookMark In ActiveDocument.Bookmarks
aBookMark.Range.Expand Unit:=wdSection
aBookMark.Range.Delete
Next aBookMark
End Sub
This works, if your notes are delineated by section breaks before and after;
and each has a bookmark embedded within. Or leave out the expand line of
code, if each note is bookmarked as a whole and not 'sectioned' off.
>> Otherwise,
>> let's not think about bookmarks. Is there a way I could use
[quoted text clipped - 5 lines]
>> I look forward to your feedback, and feel free to ask questions if
>> anything needs clarification.
Also, you could could format your notes' font as hidden and show or hide the
text or option to print hidden text or not.

Signature
Russ
drsmN0SPAMikleAThotmailD0Tcom.INVALID