View Single Post
Old Oct 27th, 2005, 12:53 AM   #2
Ghost
Man Bear Pig Hunter
 
Ghost's Avatar
 
Join Date: Jul 2005
Location: NorCal, USA
Posts: 295
Rep Power: 4 Ghost is on a distinguished road
What version of Visual Basic?

In VB.NET I believe:
FileStream file = new FileStream("C:\textfile.txt",FileMode.OpenOrCreate, FileAccess.Read)
StreamReader sr = new StreamReader(file)

Text1.Text = sr.ToString()
Ghost is offline   Reply With Quote