README.md

December 4, 2022 ยท View on GitHub

A Extremely Easy Clock

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
ByPhilip Beam
LevelBeginner
User Rating4.5 (50 globes from 11 users)
CompatibilityVB 5.0, VB 6.0
CategoryMiscellaneous
WorldVisual Basic
Archive File

Source Code

Private Sub Form_Load()
  Timer1.Interval = 1
End Sub
Private Sub Timer1_Timer()
  Label1.Caption = Time
End Sub