Print with wavy underlines

J

Joe

How can I print a Word document with wavy underlines of spelling and grammar?

Thank you.
Joe
 
S

Suzanne S. Barnhill

There isn't any provision in Word for doing this; the best you can do is
take a screen shot and print that. You can get a very simple screen shot of
the entire window using Alt+PrintScreen, which copies the image to the
Clipboard, whence you can paste it into a new document. For more
sophisticated screen captures (including scrolling windows) I recommend
SnagIt (www.techsmith.com).
 
J

Joe

Dear Suzanne and All,

Thank you for your answer and attention but I've found solution in Google
Groups. These short macros maybe will useful to someone in the future:

Sub MarkSpErrors()

Set MyError = ActiveDocument.SpellingErrors

For Each oError In MyError
With oError.Font
.Color = wdColorRed
.Underline = True
.Underline = wdUnderlineWavy
End With

Next oError

End Sub

Unfortunately it dosn't work with green marks only reds.
Another macro (I modified this) work with both but mark full sentence witch
contain a green wavy underline :

Sub TagSpellingSPerrors()

Dim oSPerror
Dim SPerrors
Dim oGRerror
Dim GRerrors

Set SPerrors = ActiveDocument.SpellingErrors
Set GRerrors = ActiveDocument.GrammaticalErrors

For Each oGRerror In GRerrors
With oGRerror.Font
..Color = wdColorGreen
..Underline = True
..Underline = wdUnderlineWavy
End With

Next oGRerror

For Each oSPerror In SPerrors
With oSPerror.Font
..Color = wdColorRed
..Underline = True
..Underline = wdUnderlineWavy
End With
Next oSPerror

End Sub

Both macro run very slowly or my computer is too poor.

Tanks again your attention.
Best regards,
Joe
 

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