C
craigkenisston
I'm new to VS2005, I used VS2003 a bit, and I remember it didn't act
like this.
My code looks like :
try
{
blah
blah
blah
}
catch (Exception)
{
MyOwnException myoe = new MyOwnException ("Error on receiving data");
throw myoe;
}
And what I get when an error happens is a window telling me :
"Application1 has encountered a problem and needs to close.
Send Error Report Don't Send"
Then after clicking either "Send" or "Not Send", the windows closes and
the program vanishes.
As far as I remember I'm catching the exception and the program should
be keep working after that.
Where's my fault ?
like this.
My code looks like :
try
{
blah
blah
blah
}
catch (Exception)
{
MyOwnException myoe = new MyOwnException ("Error on receiving data");
throw myoe;
}
And what I get when an error happens is a window telling me :
"Application1 has encountered a problem and needs to close.
Send Error Report Don't Send"
Then after clicking either "Send" or "Not Send", the windows closes and
the program vanishes.
As far as I remember I'm catching the exception and the program should
be keep working after that.
Where's my fault ?