WindowsのSetTimer関数を使用しようとすると、指定した場合でもタイマーのIDEventが生成されます。
これ:
SetTimer(0,999,10000,@timerproc);
の:
procedure timerproc(hwnd: HWND; uMsg: UINT; idEvent: UINT_PTR;dwTime: DWORD); stdcall;
begin
KillTimer(0, idEvent);
showmessage(inttostr(idevent));
end;
戻る:
乱数!
Windowsが選択する代わりに、自分でタイマーを管理することはできますか?
どうもありがとうございます!