Results 1 to 3 of 3

Thread: [RESOLVED] Copy Notepad Content to a Textbox

  1. #1

    Thread Starter
    Member
    Join Date
    Jun 2008
    Posts
    61

    Resolved [RESOLVED] Copy Notepad Content to a Textbox

    Hello,
    Can anyone give me a code that can copy all the content of a chosen notepad to a textbox? Thank you.

  2. #2

  3. #3

    Thread Starter
    Member
    Join Date
    Jun 2008
    Posts
    61

    Re: Copy Notepad Content to a Textbox

    Quote Originally Posted by RhinoBull
    Do you want to load content of a text file into textbox? ...
    If you need to work with the file then read these tuttorials...
    Thanks! I found all i need at "How to edit a text file without openning it":

    Code:
       Open "C:\File.txt" For Input As #1
       text1.text = Input(LOF(1), 1)
       Close #1

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