Este proyecto se basa en el uso de un control Timer para mostrar la hora actual. Se emplea una etiqueta o control Label para contener en su propiedad Text la Hora asociada al equipo que proporcionara el control Timer
Se agrego una actualizacion en la rama main para contar con la version actualizada del proyecto.
Detalles Tecnicos del Proyecto: Lenguaje: Visual Basic.NET Version del Framawork: 4.7.2
This project is based on the use of a Timer control to display the current time A Label control is used to contain in its Text property the Time associated with the equipment that will provide the Timer control
An update was added to the main branch to have a version Actually of the project.
Technical Details of the Project: Language: Visual Basic.NET Framework Version: 4.7.2
Code of the Project:
Public Class frmEjemploTemporizador
Private Sub tmrReloj_Tick(sender As Object, e As EventArgs) Handles tmrReloj.Tick
lblReloj.Text = TimeOfDay
End Sub
End Class