README.md
December 4, 2022 ยท View on GitHub
Description
This code is the easiest clock ever... The code doesnt get any easier. If you like it vote for it.
More Info
You need a Timer (named Timer1) and a label (named Label1)... Do not rename the form. Leave it Form1.
| Submitted On | |
| By | Philip Beam |
| Level | Beginner |
| User Rating | 4.5 (50 globes from 11 users) |
| Compatibility | VB 5.0, VB 6.0 |
| Category | Miscellaneous |
| World | Visual Basic |
| Archive File |
Source Code
Private Sub Form_Load()
Timer1.Interval = 1
End Sub
Private Sub Timer1_Timer()
Label1.Caption = Time
End Sub