decrypt Posted January 17, 2004 Posted January 17, 2004 Every time i start up my program i get a System.StackOverflowException error. What is this error message? What is the cause of it? Quote
Administrators PlausiblyDamp Posted January 17, 2004 Administrators Posted January 17, 2004 Could you post some code - it helps a lot in trying to fix problems. The error basicaly means you've run out of stack space - nearly always caused by recursion somewhere in the code. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
decrypt Posted January 17, 2004 Author Posted January 17, 2004 (edited) well the code is a bit too big, but now that i know what it means i will try fixing it... umm...what's a recursion? Edited January 17, 2004 by decrypt Quote
decrypt Posted January 17, 2004 Author Posted January 17, 2004 (edited) never mind it's fixed Edited January 17, 2004 by decrypt Quote
Administrators PlausiblyDamp Posted January 17, 2004 Administrators Posted January 17, 2004 Code that calls itself i.e. Private Sub DoThing DoThing() end Sub Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.