blah blah blah is here! blah blah » Close

0
votes
1 answers

Write exact location in text file

Hello, Is it possible to write to an exact location in a text file. So write to some 'point' in your text file. what I mean with it is the following: These are some examples of locations in a text file. [url]http://users.telenet. ...

1
votes
4 answers

C# load textfile contents to ListBox

My code below is able to easily load textfile contents to a textBox, with Multiline. FileInfo myFile = new FileInfo(@"D:\output.txt"); TextReader myData = myFile.OpenText(); textBox1.Text = myData.ReadToEnd(); myData.Close ...

Feedback