Thread
:
Using Text Files...
View Single Post
Oct 27th, 2005, 12:53 AM
#
2
Ghost
Man Bear Pig Hunter
Join Date: Jul 2005
Location: NorCal, USA
Posts: 295
Rep Power:
4
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
View Public Profile
Visit Ghost's homepage!
Find More Posts by Ghost