Private Sub ueest_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Me.StatusStrip1.Items(0).Text = "Fecha : " & DateAndTime.DateString()
With Timer1
.Interval = 1000
.Start()
End With
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
StatusStrip1.Items(1).Text = "Hora : " & DateTime.Now.ToLongTimeString()
End Sub