T
trint
My code is just adding to the first row instead of adding to the next:
TextReader tr = new StreamReader(@"C:\Program Files
\webResponse3\websiteLog.log");
string lineTime;
//string[] namesTime = new string[3];
int i = 0;
while ((lineTime = tr.ReadLine()) != null)
{
textBox1.Text = lineTime;
//i++;
}
// close the stream
tr.Close();
How can I keep adding to the ascending rows please?
Thanks,
Trint
TextReader tr = new StreamReader(@"C:\Program Files
\webResponse3\websiteLog.log");
string lineTime;
//string[] namesTime = new string[3];
int i = 0;
while ((lineTime = tr.ReadLine()) != null)
{
textBox1.Text = lineTime;
//i++;
}
// close the stream
tr.Close();
How can I keep adding to the ascending rows please?
Thanks,
Trint