Hey guys, I have a problem that I cant seem to figure out. I have a multiline label that im trying to add a line everytime I click the button. Its basically adding a new CD track name, CD minutes, and CD seconds to each new line for everytime the user inputs the given information:

1 Track_Name1 3 min. 13 sec.
2 Track_Name2 2 min. 34 sec.
3 Track_Name3 3 min. 01 sec.
.
.
.

But it keeps adding the "new" line in the position of the old one, so its only displaying on 1 line. I tried using a vbCrLf, but I might have it in the wrong spot?

heres what I got...

Code:
 Private Sub btnAddCut_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAddCut.Click
        cutCounter += 1
        lblPlayList.Text = CStr(cutCounter) & " " & txtTitle.Text & " " & txtCutMin.Text & " min. " & txtCutSec.Text & " sec." & vbCrLf
        txtCutMin.Clear()
        txtCutSec.Clear()
        txtTitle.Clear()

    End Sub
The cutCounter is obviously the track number, and it clears the current info for the new information. Thanks for any help...