Page 1 of 1
Error "Not Enough timers available"
Posted: Fri 25 Feb 2005 18:58
Hi!
I'm using ODAC 5.1 in D7 with Intraweb 7.2.1.
On server side (not in the Explorer) I get error dialog with message "Not Enough timers available".
Does it come from ODAC or Intraweb?
THX!
Posted: Fri 25 Feb 2005 21:05
by Guest
I have found out that it is yours erro from:
procedure TWin32Timer.UpdateTimer;
begin
KillTimer(FWindowHandle, 1);
if (FInterval 0) and FEnabled and Assigned(FOnTimer) then
if SetTimer(FWindowHandle, 1, FInterval, nil) = 0 then
----> raise EOutOfResources.Create(SNoTimers); <<-----
end;
Could you please give me information what to do?
Posted: Sun 27 Feb 2005 10:56
Hi!
I have found out that if SmartRefres is True this error shows...
If false nothing...looks all fine!
Frankly I do not understand deeply SmartRefresh so I'm refresing components by my own.
BTW this all happened in Oracle shared server mode with connection pooling (default options) ... if anyone has interes to test it?!
;-
Posted: Tue 01 Mar 2005 09:38
by Paul
We cannot reproduce your problem. Send us small demo project to demonstrate the problem (please include script to create server objects).
TWin32Timer.UpdateTimer procedure is implemented correctly. You can also get this error message from TTimer component in ExtCtrls.pas.