On Aug 24, 2006, at 12:12 PM, GAmoore at aol dot com 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>
From Thu 24 Aug 2006 15:56:46 EDT
Return-Path: <gettingstarted-bounces at lists dot realsoftware dot com>
X-Original-To: listarchive at realsoftware dot com
Delivered-To: listarchive at realsoftware dot com
Received: by xmail.realsoftware.com (Postfix, from userid 1037)
id D873FA6A8B8; Thu, 24 Aug 2006 12:57:30 -0700 (PDT)
X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on realxserve.local
X-Spam-Level:
X-Spam-Status: No, score=-1.6 required=4.5 tests=AWL,BAYES_00,NO_REAL_NAME
autolearn=no version=3.1.1
Received: from lists.realsoftware.com (lists.realsoftware.com [209.198.132.125])
by xmail.realsoftware.com (Postfix) with ESMTP id D3565A6A8B1;
Thu, 24 Aug 2006 12:57:27 -0700 (PDT)
Received: from lists.realsoftware.com (localhost [127.0.0.1])
by lists.realsoftware.com (Postfix) with ESMTP
id A77051467586; Thu, 24 Aug 2006 14:57:20 -0500 (CDT)
X-Original-To: gettingstarted at lists dot realsoftware dot com
Delivered-To: gettingstarted at lists dot realsoftware dot com
Received: from imo-m18.mx.aol.com (imo-m18.mx.aol.com [64.12.138.208])
by lists.realsoftware.com (Postfix) with ESMTP id 962561467574
for <gettingstarted at lists dot realsoftware dot com>;
Thu, 24 Aug 2006 14:57:14 -0500 (CDT)
Received: from GAmoore at aol dot com
by imo-m18.mx.aol.com (mail_out_v38_r7.6.) id w.4a9.9d1e100 (62976)
for <gettingstarted at lists dot realsoftware dot com>;
Thu, 24 Aug 2006 15:57:05 -0400 (EDT)
From: GAmoore at aol dot com
Message-ID: <4a9 dot 9d1e100 dot 321f5e7e at aol dot com>
Date: Thu, 24 Aug 2006 15:56:46 EDT
To: gettingstarted at lists dot realsoftware dot com
MIME-Version: 1.0
X-Mailer: Thunderbird - Mac OS X sub 310
Content-Type: text/plain; charset="US-ASCII"
Content-Transfer-Encoding: 7bit
X-Content-Filtered-By: Mailman/MimeDel 2.1.2
Subject: stack overflow
X-BeenThere: gettingstarted at lists dot realsoftware dot com
X-Mailman-Version: 2.1.2
Precedence: list
Reply-To: Getting Started <gettingstarted at lists dot realsoftware dot com>
Sender: gettingstarted-bounces at lists dot realsoftware dot com
Errors-To: gettingstarted-bounces at lists dot realsoftware dot com
I found the problem - i had method A call Method B which in turn calls Method
A....
_______________________________________________
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>
|