On Aug 24, 2006, at 12:12 PM, [EMAIL PROTECTED] wrote:
I have no clue what is causing this stack overflow error?
Stack overflow is usually from calling a method/event recursively
This can happen deliberately or accidentally
say you have a method that does
function foo(i as integer) as integer
return foo(i+1)
This would do it if you called foo(0) since there is no condition to
cause this to stop calling itself
The same can happen when an event makes some change to the control
which then re-triggers the same event
Do you get an indication which method this happens in ?
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>