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!
Error "Not Enough timers available"
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?
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?
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?!
;-
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?!
;-