Question Timers

glw1988

New member
Joined
Apr 21, 2010
Messages
4
Programming Experience
1-3
Hello

I am trying to design a digital clock using the drawing tool. i have drawn all the segments using the drawpen function and i have also created a timer that will get the current system time. i want to link the current system to the digital display i have drawn, so that when the time is 1:02 for example only that will highlight on the digital display
 
To get the current time: DateTime.Now

Here's some properties you'll want to use:
Year
Month
Day
Hour
Minute
Second
 
Yes, and I've provided you with how to get the current system time and the properties you'd want (I know you'll need to know the Hour, Minute and Second) all you need to do is draw the numbers in those properties on your clock and viola, it's working.
 
Back
Top