06-01-20, 12:14 PM
جرب هذا الكود
تأكد أن التايمر شغال بتعديل الخاصية Enabled=True
PHP كود :
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
Label1.Text &= "."
If Label1.Text.Length > 10 Then Label1.Text = "stop."
End Sub
