Based on this SO post (https://stackoverflow.com/questions/1329900/net-event-every-minute-on-the-minute-is-a-timer-the-best-option) is it possible to create a timer event that fires every 30 seconds but starts on the 15 second mark according to the system clock?
So 00:15, 00:45, 01:15, 01:45, etc.
UPDATE
To be more specific, I want to enable a timer that synchronizes to the Windows system clock. At every 15 seconds, I want to run some code, then at every 45 seconds I want to run the code again. I need this event to fire on the exact 15 second mark and 45 second mark according to the system time, not just every 30 seconds from when the timer started.
So if I start the timer at 12:30:47 I want the timer to fire at 12:31:15 and again at 12:31:45 and so on.