Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this code

FileStream fs = new FileStream("Scores.txt", FileMode.OpenOrCreate, FileAccess.Write);
        StreamWriter sw = new StreamWriter(fs);
        sw.Write("Name: " + name_box.Text + " Time " + label1.Text);
        sw.Close();

which is simple the label1 is assgined to a Timer tick as in the folowing

private void timer1_Tick(object sender, EventArgs e)
    {
        // Format and display the TimeSpan value. 
        TimeSpan ts = stopWatch.Elapsed;
        string elapsedTime = String.Format("{0:00}:{1:00}:{2:00}.{3:00}",
            ts.Hours, ts.Minutes, ts.Seconds,
            ts.Milliseconds / 10);
       label1.Text = elapsedTime;
    }

now when I open the Text File I found the following results

Name: Tony Time 00:00:06.67Text:  Time [System.Windows.Forms.Timer], Interval: 100

which are perfect but what is ( Text: Time [System.Windows.Forms.Timer], Interval: 100) I don't want that to appear in the txt

thanx in advance

share|improve this question
1  
it looks a lot like the output you would get from timer1.ToString. Are you sure there's not a mistake like that somewhere? – Sander Rijken Jan 3 '10 at 21:06
2  
StreamWriter is not writing extra stuff. You are sending it stuff that you don't want it to write. I am editing your title to reflect this. – Jason Jan 3 '10 at 21:07
@Jason: Actually you're both wrong. ;) The problem isn't that extra stuff is being sent, the problem was that the extra stuff is already in the file. – Aaronaught Jan 3 '10 at 21:16

2 Answers

up vote 1 down vote accepted

You are using FileMode.OpenOrCreate in the constructor. This does not erase the previous contents of the file. I suspect that if you delete the file and then try running your program again, you won't see any of that extra stuff.

I suggest either using FileMode.Create or FileMode.Append. Use the first if you want to overwrite the results, the second if you want to... well, append.

share|improve this answer
Thanx Its Working – Tony Jan 3 '10 at 21:20

You probably have the following line somewhere else in your code:

label1.Text = timer1.ToString();

You should write-click the word label1 in your code, then click Find All References to see what else you're doing with it.


By the way, instead of creating a stream, you should use File.WriteAllText, like this:

File.WriteAllText("Scores.txt", "Name: " + name_box.Text + " Time " + label1.Text);
share|improve this answer
Im Sure I don't have (label1.Text = timer1.ToString();) – Tony Jan 3 '10 at 21:15
@Tony: are you really, really, really sure? Just ran your code and it works as is. – R. Martinho Fernandes Jan 3 '10 at 21:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.