https://github.com/ozzies-code/ejemplo-temporizador-vb
Este proyecto se basa en el uso de un control Timer para mostrar la hora actual
https://github.com/ozzies-code/ejemplo-temporizador-vb
Last synced: 2 months ago
JSON representation
Este proyecto se basa en el uso de un control Timer para mostrar la hora actual
- Host: GitHub
- URL: https://github.com/ozzies-code/ejemplo-temporizador-vb
- Owner: ozzies-code
- Created: 2024-12-30T13:59:58.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-12-30T14:17:50.000Z (5 months ago)
- Last Synced: 2025-01-21T12:13:06.964Z (4 months ago)
- Language: Visual Basic .NET
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ejemplo-Temporizador-Vb
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# Actualizacion: 30/12/2024
# Hora: 10:08Se 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# Example-Timer-VB
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# Update: 12/30/2024
# Time: 10:08An 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