|
|
|
Showing The Time Dynamically (Clock) Comments To show the current system time dynamically (that is, a clock), use a Timer and a Label. The Label Caption should be set empty, initially; and set dimensions manually, with Autosize off. Set the Timer's Interval to 1000 milliseconds, so it will increment once per second. Each time the OnTimer event reaches its Interval, it will get the current time with the native Now function, and then rewrite the Label Caption with the current time.
. |