Results 1 to 11 of 11

Thread: the 'immeadiate' window :nvm. RESOLVED

Threaded View

  1. #4
    INXSIVE Bruce Fox's Avatar
    Join Date
    Sep 2001
    Location
    Melbourne, Australia
    Posts
    7,429
    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:
    1. For i = 0 To UBound(sLinesInTextbox)
    2.         strBuff = strBuff & vbTab & sLinesInTextbox(i) & vbCrLf
    3.     Next i

    You can output the Buffer (to Word) in your BookMrks/New Doc etc

    Bruce.
    Last edited by Bruce Fox; Dec 1st, 2003 at 08:17 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width