First question is, is it at all possible to have a rich text box read info. from a text file?
2nd is how do I get FTP access?
Some VB questions
Some VB questions

I♥ACE|HALO VICIS|ELITE MODS
Tim Buckley wrote:Ignorance causes violence, not video games. Man up and take responsibility.
A site worth checking out.
*sigh*
Whatever happened to answering questions these days?
Is there somebody who can answer my questions or do I have to register to the forum?
Whatever happened to answering questions these days?
Is there somebody who can answer my questions or do I have to register to the forum?


I♥ACE|HALO VICIS|ELITE MODS
Tim Buckley wrote:Ignorance causes violence, not video games. Man up and take responsibility.
Its a very simplle fix.
Create a new system.io.streamreader and have it read the .txt file or whatever you want. Then assign a string value to the read contents and print it in the textbox.
Heres some sample code
Create a new system.io.streamreader and have it read the .txt file or whatever you want. Then assign a string value to the read contents and print it in the textbox.
Heres some sample code
Code: Select all
Dim reader As New System.IO.StreamReader(".txt path")
Dim lines As String
lines = reader.ReadToEnd
notebox.Text = lines
reader.Close()

Please stop removing my sig. The last mod who edited it said height was 125, and thats what I put.