Post by AndyPrint into a text file instead if you want more.
Or add another form to your project and put a TextBox with its MultiLine
property set to True on it. Add this Resize event code to your new form
Private Sub Form_Resize()
Text1.Move 0, 0, Me.ScaleWidth, Me.ScaleHeight
End Sub
and dump all your text to it by assigning it to the TextBox's SelText
property. That way you can view the output directly in a resizable
window that can be moved out of the way and minimized. Give the form an
easily searched for name so you can easily find the code you used to
print to the TextBox when it is time to remove it.
Rick