1) In VS View -> Output Window (may be it is already open, but for safe side)
2) rewrite you code like this:
replace:
catch (Exception ex)
{
}
with:
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine(ex.StackTrace);
}
and then see output window. you will see many lines but the last few lines will be referring the error causing.