Tuesday, October 6, 2009

JWMD ExceptionBox

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

image image image
Supports InnerException
image Exception Icons
image
 

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
Download

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.