Hi, Glenn,
For reasons that are probably Lost in the Mists of Time (TM), a newline in
an ASK field is represented by ASCII 11 (the VBA constant vbVerticalTab) but
in a message box or in an ordinary paragraph of a document it's an ASCII 13
(or vbCr). The message box shows the vbVerticalTab as a square.
To convert for display, throw this line into your code between retrieving
the ASK field contents and displaying the message box:
myString = Replace(myString, vbVerticalTab, vbCr)
This assumes you're using Word 2000 or later; for Word 97 you need to write
your own Replace function, using a "For index" loop to step Mid(myString,
index, 1) through all the characters in myString.