hi,
i have a problem with the RTimer At functionality.
I implemented a timer in my app (timer example).
The problem is, that i get no callback, when i use TTimeIntervalHours?
When i use TTimeIntervalSeconds or TTimeIntervalMinutes everything is working fine!
What could be the problem here? (5th SDK)
timer gets called like this:
Code:TTime now; now.HomeTime(); now+=TTimeIntervalHours(1); myTimer->At(now);Code:void CExampleTimer::At(const TTime& aTime) { Cancel(); iTimer.At(iStatus,aTime); SetActive();

Reply With Quote


