I found the source of the problem. It was my own fault. I had changed a Property from a certain class into a Computed Property, added another property to store its value, moved a global Method into the class and used the Computed Property's Getter to call the class' now local method. Unfortunately, I had forgotten to change the Method's code to call the new property. Instead it would return the (now) computed property.
So, once the Computed Property's getter was called upon, it would call the local method, which would call the Computed Property, which would call that method again, ... etc. etc. Stupid mistake, which RB could not detect, since it could not 'know' that that was not what I intended. It was a change I had made since the last time I had run my code in 2005r4, but had forgotten all about. Thanks for the help. Ronald Vogelaar -- http://www.rovosoft.com -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joseph Sent: Tuesday, May 23, 2006 8:57 PM To: 'REALbasic NUG' Subject: RE: Really annoying R2 Are you able to use the pause button in the debugger? I had an error that didn't seem to get trapped by RB (a hang of sorts) and when I 'paused' the application it gave me a clue where the hang-up was occurring. ~joe _______________________________________________ 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> _______________________________________________ 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>
