12-11-19, 06:39 PM
PHP كود :
Dim ss As Integer = TextBox1.Text
Dim aa As Integer = TextBox2.Text
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
ProgressBar1.Increment(textbox2.text)
If ProgressBar1.Value = textbox1.text Then
MsgBox("ok")
End If
Label1.Text = ProgressBar1.Value
End Sub
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Timer1.Start()
End Sub
End Class
