I have a timer that is going to trigger every 15 seconds.
But I want it to start at a round time: 14:00 ; 14:15 ... 16:45 for examples.
So I don't want it to start when the form loads for example, as it's going to be at a random time...
How could I do that ?
I was thinking about a timer and so check every second if I've got
Now.Seconds = 0
AND Now.Minutes =
0,15,30 or 45.
But it looks like a very ugly and cpu consuming solution for almost nothing...
Any advice ? :)
Nota : Framework 4.0 for a WinForm application. vb.net language.