um, mine progress bar isnt working, it come up with an error like this

this is the code
I use vb6.

this is the code
Code:
Private Sub Timer1_Timer() Timer2.Enabled = True If ProgressBar1.Value = "90" Then Timer1.Enabled = False Label1.Caption = "Rofl Pantofl" End If End Sub Private Sub Timer2_Timer() ProgressBar1.Value = ProgressBar1.Value + 10 If ProgressBar1.Value = "200" Then Label1.Caption = "uber roflpantofl" End If End Sub
Comment