see time

doc7i9

Member
Joined
Jan 27, 2011
Messages
8
Programming Experience
Beginner
how to show the current time in a label that ticks
the time moves the same time as the system time
as simple as possible

thx

i tried doing this but the code i used was way too long
 
Use a Timer to generate reoccuring events, in the Tick event handler do this:
VB.NET:
Me.TimeLabel.Text = Date.Now.ToShortTimeString
 
Back
Top