Printing the comments in Word 97

E

Elizabeth P

I have user that wants to print the comments inserted by
different people in the document location where the
comments occur and not at the end of the document.

I know in Word 2002 the comments will print on the
document where they occur. since the user will not be
viewing the documents on line
 
S

Suzanne S. Barnhill

I don't believe this is possible in Word 97.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://www.mvps.org/word
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
S

Stefan Blom

An additional comment...

If you're unfamiliar with macros, see:

http://www.gmayor.dsl.pipex.com/installing_macro.htm

for how to install it.

Stefan

-----Original Message-----
The following very simple macro will insert the text of your
comments after their referenced text. When you've run the macro,
simply print the document and then close without saving, unless
you want the comment text to be saved with the document.

Sub PrintCommentsWithText
Dim c As Comment
For Each c In ActiveDocument.Comments
c.Reference.InsertAfter "[" & c.Range.Text & "]"
Next c
End Sub

Stefan


Elizabeth P said:
I have user that wants to print the comments inserted by
different people in the document location where the
comments occur and not at the end of the document.

I know in Word 2002 the comments will print on the
document where they occur. since the user will not be
viewing the documents on line


.
 
S

stevegarfield

This worked great! I haven't coded in BASIC since I was in school. Thank you.

The following very simple macro will insert the text of your
comments after their referenced text. When you've run the macro,
simply print the document and then close without saving, unless
you want the comment text to be saved with the document.

Sub PrintCommentsWithText
Dim c As Comment
For Each c In ActiveDocument.Comments
c.Reference.InsertAfter "[" & c.Range.Text & "]"
Next c
End Sub

Stefan


Elizabeth P said:
I have user that wants to print the comments inserted by
different people in the document location where the
comments occur and not at the end of the document.

I know in Word 2002 the comments will print on the
document where they occur. since the user will not be
viewing the documents on line
 
S

Stefan Blom

Note that in recent versions of Word you can choose to print the comment
"balloons" in the text, which may be a better option.

--
Stefan Blom
Microsoft Word MVP




This worked great! I haven't coded in BASIC since I was in school. Thank
you.

The following very simple macro will insert the text of your
comments after their referenced text. When you've run the macro,
simply print the document and then close without saving, unless
you want the comment text to be saved with the document.

Sub PrintCommentsWithText
Dim c As Comment
For Each c In ActiveDocument.Comments
c.Reference.InsertAfter "[" & c.Range.Text & "]"
Next c
End Sub

Stefan


Elizabeth P said:
I have user that wants to print the comments inserted by
different people in the document location where the
comments occur and not at the end of the document.

I know in Word 2002 the comments will print on the
document where they occur. since the user will not be
viewing the documents on line
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top