Comments
Sort by recent activity
I forgot to write the SmartAssembly version. It is the version 5.5 EAP build 95 / comments
I forgot to write the SmartAssembly version. It is the version 5.5 EAP build 95
Hi
I have changed my test project to a Windows Forms Application and now everything works. However, this is not the solution, as we work with WPF.
Thanks
Marco / comments
Hi
I have changed my test project to a Windows Forms Application and now everything works. However, this is not the solution, as we work with WPF.
Thanks
Marco
I'm protecting a WPF application written in C#. I don't have any global error handling. / comments
I'm protecting a WPF application written in C#. I don't have any global error handling.
Hi
I have tested OverflowException, ArgumentNullException and DivideByZeroException. Unfortunately my program is always closed. If I use the ReportExceptionAttribute, then my program is not closed.
What is the problem?
Thanks
Marco / comments
Hi
I have tested OverflowException, ArgumentNullException and DivideByZeroException. Unfortunately my program is always closed. If I use the ReportExceptionAttribute, then my program is not closed....
Hi Brian,
Do you have a list of exceptions that my program will close and which not?
Can I control, which exceptions will close my program?
You attach to each method and property following code:
try
{
//MyCode
}
catch (Exception exception1)
{
UnhandledException.CreateExceptionX();
throw;
}
Is there a way to omit the "throw;"?
Thanks
Marco / comments
Hi Brian,
Do you have a list of exceptions that my program will close and which not?
Can I control, which exceptions will close my program?
You attach to each method and property following code:
tr...