从一个从另一个传递的表单中捕获堆栈跟踪

时间:2014-03-13 09:27:28

标签: c# visual-studio-2010

我遇到了一个大问题..我尝试搜索半天,这是我的问题。 我正在创建一个使用c#和.net v4.0(客户端配置文件版本)的应用程序,当一个异常trow生成一个PDF报告,我想要做的是我想在发生错误时将堆栈跟踪到我的报告,我知道如何在发生错误时获取堆栈跟踪,但我需要知道如何将其传递给显示堆栈跟踪的另一个窗体表单,并让用户有机会在发送之前查看它如何将我的堆栈跟踪传递给另一种形式请帮忙  thnax提前!

这是我用于获取异常堆栈跟踪的代码

try
{
    StreamReader sr = new StreamReader(@"C:\Users\niyo\Documents\TESTs\hfkdjhfkhd.text");
}
catch (Exception ex)
{
    string trace = ex.StackTrace;
    MessageBox.Show("Test");
    frmProto frm = new frmProto();
    frm.Show();
    this.Hide();
}

2 个答案:

答案 0 :(得分:1)

Form1上的

try
{
    StreamReader sr = new StreamReader(@"C:\Users\niyo\Documents\TESTs\hfkdjhfkhd.text");
}
catch (Exception ex)
{
    string trace = ex.StackTrace;
    MessageBox.Show("Test");
    frmProto frm = new frmProto();
       frm.trace=trace;
    frm.Show();
    this.Hide();
}
Form2上的

   public static string trace;
     MessageBox.Show(trace);

答案 1 :(得分:0)

试试这个:

public static Exception formException;
try
{
StreamReader sr = new StreamReader(@"C:\Users\niyo\Documents\TESTs\hfkdjhfkhd.text");
}
 catch (Exception ex)
{
formException = ex;
MessageBox.Show("Test");
frmProto frm = new frmProto();
frm.Show();
this.Hide();
}  

在新表单上使用:

异常form1_Exception = Form1.formException;

解析整个Exception对象,因为它包含错误消息。有时错误消息比堆栈跟踪更有用,因为错误消息非常清楚。

很多时候,Exception对象的InnerException更有帮助。

祝你好运!

我做的完整样本:

   using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public static Exception formException;

        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                int.Parse("This will raise and excpetion because i can't convert this to an int... ");
            }
            catch (Exception ex)
            {
                formException = ex;
                Form2 frm = new Form2();
                this.Hide();
            }
        }
    }
}

在你的第二张表格上:

 using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form2 : Form
    {
        public Form2()
        {
            InitializeComponent();
            MessageBox.Show(Form1.formException.Message);
        }
    }
}