I have made my own ExceptionBox (window) for my applications in case something went wrong. I hate the default exception window in Windows Mobile ..
Anyway, here are some screenshots
Supports InnerException | ||
Exception Icons |
Code Snippet
try
{
int x = 0;
int y = 1;
int z = y / x;
}
catch (Exception ex)
{
using (ExceptionBox.Window frm = new ExceptionBox.Window("Error Occured", ExceptionBox.ExceptionIcons.Exception, ex.Message, ex))
{
frm.ShowDialog();
}
}
Download the binaries here | |
Initial Release October 7, 2009 |
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.