Results 1 to 3 of 3

Thread: newbie question

  1. #1

    Thread Starter
    New Member
    Join Date
    Aug 2000
    Posts
    1
    how do I show the contents of a text file
    in a text box or text list in my program?
    this is a Visual Basic program.


  2. #2
    Frenzied Member
    Join Date
    Mar 2000
    Posts
    1,089
    there are some good tutorials on this Here

  3. #3
    Guest
    Code:
    Open "MyTextFile.txt" For Input As #1
    Text1 = 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