Can someone help me find what I apparently can't see for myself...
I'm wanting this code to run everytime a button is clicked...
this is in the Timer1 Tick event.
ProgressBar1.Value = i
If i < 100 Then
i = i + 1
End If
Label1.Text = "...saving " & i & " %"
If i = 100 Then
ccls.frm2save()
Timer1.Stop()
End If
on the page load I've put:
Timer1.interval = 10
timer1.enabled = false
and on the button click
timer1.start()
Weellll....the code works great the first time, but if I click the button a second time...it does nothing.
What is it that I'm overlooking?