Click here to Skip to main content
15,925,528 members
Home / Discussions / C#
   

C#

 
GeneralRe: problem with registering flormclosing event with button click event Pin
OriginalGriff17-Jun-09 0:12
mveOriginalGriff17-Jun-09 0:12 
QuestionHelp me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma16-Jun-09 21:08
radhikasharma16-Jun-09 21:08 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Thomas Krojer16-Jun-09 21:32
Thomas Krojer16-Jun-09 21:32 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Mirko198016-Jun-09 21:43
Mirko198016-Jun-09 21:43 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma16-Jun-09 22:08
radhikasharma16-Jun-09 22:08 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma16-Jun-09 22:06
radhikasharma16-Jun-09 22:06 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Thomas Krojer16-Jun-09 22:13
Thomas Krojer16-Jun-09 22:13 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma17-Jun-09 0:21
radhikasharma17-Jun-09 0:21 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
DaveyM6917-Jun-09 0:37
professionalDaveyM6917-Jun-09 0:37 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
OriginalGriff16-Jun-09 22:39
mveOriginalGriff16-Jun-09 22:39 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
DaveyM6916-Jun-09 22:50
professionalDaveyM6916-Jun-09 22:50 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Alan N17-Jun-09 0:05
Alan N17-Jun-09 0:05 
JokeRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
akyriako7817-Jun-09 3:34
akyriako7817-Jun-09 3:34 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma17-Jun-09 3:50
radhikasharma17-Jun-09 3:50 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
akyriako7817-Jun-09 3:54
akyriako7817-Jun-09 3:54 
JokeReminds me of an Aggie Joke Pin
Andrew Rissing17-Jun-09 4:07
Andrew Rissing17-Jun-09 4:07 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma17-Jun-09 4:35
radhikasharma17-Jun-09 4:35 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Lutosław17-Jun-09 8:37
Lutosław17-Jun-09 8:37 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Jeremy Tierman18-Jun-09 5:08
Jeremy Tierman18-Jun-09 5:08 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Edw19-Jun-09 13:06
Edw19-Jun-09 13:06 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
johannesnestler1-Jul-09 5:32
johannesnestler1-Jul-09 5:32 
Hi radhika!

Sorry it's a little late for this reply, but when I looked at your code I nearly cried.
I think your problem is solved, so some other suggestions:
* Invest some time in learning the basics of the environment and language you are using.
(I think you are new to programming) So you learn what type of errors can cause something
like StackOverflowException.
* Thinking about good variable names is never wasted time.
* Posts on any programming forum should never be in the style "I don't understand what you
are talking about - just give me the solution"
* If something compiles it doesn't mean that it is free of errors - NEVER! It just means
it's free of syntax-errors.
* If you have written such a long method - think about how to optimize: code length (maybe
split into several methods), readability (naming, comments, whitespace), functionality...
* Next time you want to use goto: leave it!

Another thing: Maybe you had some reason for all your Add(...Character(...)) lines but to me it looks very strange:
what about:
for(char ch = (char) 0; ch < 128; ch++)
{
    // do something with char
}


Rose | [Rose]
QuestionItem collection cannot be modified when datasource property is set Pin
Rahul DSG16-Jun-09 21:05
Rahul DSG16-Jun-09 21:05 
AnswerRe: Item collection cannot be modified when datasource property is set Pin
himanshu256116-Jun-09 21:34
himanshu256116-Jun-09 21:34 
AnswerRe: Item collection cannot be modified when datasource property is set Pin
Morteza Karimian Kelishadrokhi29-Jul-11 3:45
Morteza Karimian Kelishadrokhi29-Jul-11 3:45 
AnswerRe: Item collection cannot be modified when datasource property is set Pin
Morteza Karimian Kelishadrokhi29-Jul-11 8:41
Morteza Karimian Kelishadrokhi29-Jul-11 8:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.