Results 1 to 4 of 4
  1. #1
    mo3ad001's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    842
    Reputation
    53
    Thanks
    797
    My Mood
    Busy

    [Help]VB Read text file[Solved]

    hello Guys Mpgh member
    i want to ask how i can made the visual basic 2008
    read the file text like C:\mmm\mmm\text001.text
    and show it in the textbox
    thx

  2. #2
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    dim reader as system.io.streamreader = new streamreader("C:\test.txt")

    textbox1.text = reader.readtoend

    reader.dispose



  3. The Following User Says Thank You to Blubb1337 For This Useful Post:

    mo3ad001 (06-16-2010)

  4. #3
    mo3ad001's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    842
    Reputation
    53
    Thanks
    797
    My Mood
    Busy
    Quote Originally Posted by Blubb1337 View Post
    dim reader as system.io.streamreader = new streamreader("C:\test.txt")

    textbox1.text = reader.readtoend

    reader.dispose
    that don't work error in dim reader as system.io.streamreader = new streamreader("C:\test.txt")

    the Color Read say Error

  5. #4
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    imports system.io


    as namespace above public form 1



  6. The Following User Says Thank You to Blubb1337 For This Useful Post:

    mo3ad001 (06-16-2010)

Similar Threads

  1. [Help] Creating a .txt file [Solved]
    By urosjoj in forum Visual Basic Programming
    Replies: 9
    Last Post: 03-04-2011, 01:29 AM
  2. [Help] Read & write text file like:NAME1, LINK[Solved]
    By shotyoudie in forum Visual Basic Programming
    Replies: 6
    Last Post: 02-05-2011, 12:58 PM
  3. [help] Write a text file to a server
    By cosconub in forum Visual Basic Programming
    Replies: 22
    Last Post: 10-24-2010, 01:04 PM
  4. [help]read text from an online .txt[Solved]
    By trevor206 in forum Visual Basic Programming
    Replies: 10
    Last Post: 09-24-2010, 03:36 PM
  5. [Help] Problem reading text from a webpage
    By Jason in forum Visual Basic Programming
    Replies: 18
    Last Post: 06-02-2010, 10:04 AM