Re: How can I solve this error? I need help!
From: Jochen Kalmbach (nospam-Jochen.Kalmbach_at_holzma.de)
Date: 04/03/04
- Next message: Jon Skeet [C# MVP]: "Re: Is C# 2.0 syntax of Properties closed?"
- Previous message: Daniel O'Connell [C# MVP]: "Re: This forum need to improve"
- In reply to: Jet Leung: "How can I solve this error? I need help!"
- Next in thread: Andreas Håkansson: "Re: How can I solve this error? I need help!"
- Reply: Andreas Håkansson: "Re: How can I solve this error? I need help!"
- Messages sorted by: [ date ] [ thread ]
Date: Sat, 03 Apr 2004 11:06:59 -0800
Jet Leung wrote:
> When I debug my program and it return me an error call " have not handle
> ¡°System.StackOverflowException¡± appear in system.windows.forms.dll "
> How can I solve this problem??
Enable in your VS2002/2002 under "Debug | Excaptions..."
"CLR-Exceptions: Halt on all error"
Then you see where the exception occur and you can walk the callstack to
find the source of the problem.
Maybe you are setting some property inside an even-handler for this
property (common mistake)
For example:
private void textBox1_OnTextChanged(object sender, EventArgs e)
{
textBox1.Text += "_";
}
-- Greetings Jochen Do you need a memory-leak finder ? http://www.codeproject.com/tools/leakfinder.asp Do you need daily reports from your server? http://sourceforge.net/projects/srvreport/
- Next message: Jon Skeet [C# MVP]: "Re: Is C# 2.0 syntax of Properties closed?"
- Previous message: Daniel O'Connell [C# MVP]: "Re: This forum need to improve"
- In reply to: Jet Leung: "How can I solve this error? I need help!"
- Next in thread: Andreas Håkansson: "Re: How can I solve this error? I need help!"
- Reply: Andreas Håkansson: "Re: How can I solve this error? I need help!"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|