I use Visual Basic 2010... and I got that problem (I'm a noob)... please help!
I want to change the label's text when the progressbar hit the values

Private Sub mainfrm_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If Timer1.Enabled = True Then
Label3.Text("blah blah")
End If
If ProgressBar1.Value = 17 Then
Label3.Text("blah blah")
End If
If ProgressBar1.Value = 25 Then
Label3.Text("blah blah")
End If
If ProgressBar1.Value = 32 Then
Label3.Text("blah blah")
End If
If ProgressBar1.Value = 44 Then
Label3.Text("blah blah")
End If
End Sub
End Class