Instead of outputting to the Debug (Immediate Window) build a String Buffer, and output that out to a .doc File (youv'e done that before).
VB Code:
For i = 0 To UBound(sLinesInTextbox) strBuff = strBuff & vbTab & sLinesInTextbox(i) & vbCrLf Next i
You can output the Buffer (to Word) in your BookMrks/New Doc etc
Bruce.





Reply With Quote