1
T-Clock / Re: T-Clock 2010 (download)
« on: November 14, 2014, 08:11 AM »
Man I don't know why I didn't keep an eye on this thread! Your last update fixed my request from August 15th. I can now refresh the clock with AutoIT using the WM_COMMAND call, and my custom clock is working perfectly
I wrote a bit of code to create a "rounded down" clock, showing the time in Afrikaans and rounded to the nearest 5 minutes. So for example, if it is anything between 4 and 6 minutes after the hour, it will display "vyf oor vier."; anything close to 20 minutes past will show "twintig oor ...". For some reason I find I process the time much better like this, I have it on my phone as well using Tasker.
Here it is:
The app builds the text, changes the registry key, and runs the WM_COMMAND. It is executed by Windows Task Scheduler every 3 minutes, and it runs in a few milliseconds, with no real performance hit. I guess you could put any custom text in here using this method, but I love this one
I also love that it now shows the native Windows calendar when you click the clock.
Thanks WhiteTigX!!!
I wrote a bit of code to create a "rounded down" clock, showing the time in Afrikaans and rounded to the nearest 5 minutes. So for example, if it is anything between 4 and 6 minutes after the hour, it will display "vyf oor vier."; anything close to 20 minutes past will show "twintig oor ...". For some reason I find I process the time much better like this, I have it on my phone as well using Tasker.
Here it is:
The app builds the text, changes the registry key, and runs the WM_COMMAND. It is executed by Windows Task Scheduler every 3 minutes, and it runs in a few milliseconds, with no real performance hit. I guess you could put any custom text in here using this method, but I love this one
I also love that it now shows the native Windows calendar when you click the clock.
Thanks WhiteTigX!!!