Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Timers in Windows

I'm experiencing a problem with the SetTimer API.

Just for curiosity, what are my others options in Delphi?

  • There's Multimedia Timers
  • TTimer but it's just a wrapper around SetTimer / KillTimer
like image 426
ELCouz Avatar asked Dec 27 '12 06:12

ELCouz


1 Answers

codeproject.com/Articles/1236/Timers-Tutorial#QueueTimers All are described here. I am a bit hesitant to use Multimedia Timers, but they still perform well under Windows 8. Either way, the Queue Timers, or Multimedia Timers, are going to give much better results.

like image 51
AudioGL Avatar answered Sep 23 '22 21:09

AudioGL