topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Tuesday March 19, 2024, 1:23 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - dfrunet [ switch to compact view ]

Pages: [1]
1
T-Clock / Re: T-Clock 2010 (download)
« on: October 04, 2018, 08:08 AM »
Now it works (as a first iteration). Lots of improvements possible, but it fits my basic needs. Hopefully that's helpful for somebody else. Created a PR

2
T-Clock / Re: T-Clock 2010 (download)
« on: October 03, 2018, 12:36 PM »
Unfortunately it seems, this is the only clock, compatible with Windows 10... Except some buggy 1st-Clock, hardly customizable, having problems with unicode and asking for money : )
I was unable to find an existing backend, but guess the following should work when added to AlarmNextTimestamp()
if (api.GetInt(g_alarmkey, L"Once", 0) && api.GetInt(g_alarmkey, L"Day", 0) && api.GetInt(g_alarmkey, L"Month", 0)) {
int month = api.GetInt(g_alarmkey, L"Month", 0) - 1;
if (tm.tm_mon > month) ++tm.tm_year;
tm.tm_mday = api.GetInt(g_alarmkey, L"Day", 0);
tm.tm_mon = month;
}
Actually I tried it with regedit and it seems to work.
Then only two more texboxes on alarm settings page are needed to make it work somehow... I can try to add them myself... But I've never deal with UI in c++. But that might be an interesting challenge : )

3
T-Clock / Re: T-Clock 2010 (download)
« on: October 03, 2018, 05:54 AM »
Hi! Is there a possibility to schedule a reminder to some point in the calendar? If not, is it possible to add a (optional) date field to alarm definition? I used Chameleon Clock before, mostly for quick reminders creation, but after upgrading to Windows 10, it can't build into the tray, so I consider switching to t-clock, but without possibility to set a date for an alarm, it looks more like a skin than a tool : ( Or, maybe i'm missing some option? Thanks in advance!

Pages: [1]