[Solved] VB.net Update Label Each Second


Add a Timer to your project. Set the Interval property to 1000. Then…

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Timer1.Enabled = True
End Sub

Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
    Label1.Text="Your code
End Sub

5

solved VB.net Update Label Each Second