Hi i have problem with my timer. when application run it does not go to the timer at all.I have no idea where do i need to troubleshot anymore. Please help if anyone know !
If CheckStatusStr = "0" Then
Update_CurrBal()
SuccessfullySave()
ElseIf CheckStatusStr = "1" Then
timercount = 0
Timer2.Enabled = True
Timer2.Start()
End If
Application.DoEvents()
Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
If timercount > 5 Then
Timer2.Enabled = False
PaymentDone()
Else
timercount += 1
End If
End Sub