我的程序突然存在,我找不到原因,但我知道代码的哪些部分导致了这个问题。我将尝试解释会发生什么……
首先,除了常见的命名空间之外,我还在我的 Windows 窗体中使用了以下命名空间:
using System.Diagnostics;
using System.IO;
using System.Data.OleDb;
我有一个自定义函数,它通过查找最大 ID 并将其递增一来检索当前的自动递增行 ID:
void getCurrentQuestionNo()
{
//calculate current questionNo based on DB Info
classDataLayer DL = new classDataLayer();
OleDbCommand cmd = new OleDbCommand();
cmd.CommandText = "SELECT MAX([questionID]) FROM questions";
DataSet ds = DL.select(cmd);
questionNo = Convert.ToInt32(ds.Tables[0].Rows[0][0]) + 1;
}
该函数在 form_load 函数内部启动,用于设置一个名为 questionNo 的全局变量以供以后使用。
我也有以下代码来打开 microsoft word 应用程序的实例。此代码放置在按钮的单击事件中:
try
{
//copy an instance of empty question template to Temp folder
File.Copy(@"Templates\EmptyQuestion.docx", @"Temp\TempQuestion.docx", true);
//launch ms-word to open the document
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "WINWORD.EXE";
startInfo.Arguments = @"Temp\TempQuestion.docx";
Process.Start(startInfo);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
问题:
检索最后一个 questionNo 和打开 word 文档的代码中的任何一个都可以单独工作。我的意思是当我在 form_load 中调用 getCurrentQuestionNo() 时,它可以工作并且没有问题。当我在 form_load 中禁用 getCurrentQuestionNo() 函数时,启动字处理的代码可以正常工作。
但是,当我在 form_load 中调用 getCurrentQuestionNo() 然后单击按钮启动文字处理时,仍然一切正常,但在几秒钟后突然整个程序退出而没有任何消息并且单词仍然在运行。就像我从 Visual Studio IDE 中点击停止按钮一样。
有什么问题?
这显示在输出窗口中:
在 mscorlib.dll 中发生“System.IO.IOException”类型的第一次机会异常
程序“[5032] test.vshost.exe:程序跟踪”已退出,代码为 0 (0x0)。
程序“[5032] test.vshost.exe: Managed (v4.0.30319)”已退出,代码为 -2147483645 (0x80000003)。
我测试了很多案例,任何使用 oleDB 以及使用进程都会导致同样的问题。我将代码减少如下:
用于检索最后一个自动增量 ID 的代码:
OleDbConnection con1 = new OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=db.accdb");
OleDbCommand cmd1 = new OleDbCommand("SELECT MAX([questionID]) FROM questions", con1);
con1.Open();
txtID.Text = cmd1.ExecuteScalar().ToString();
con1.Close();
和启动进程的代码:
Process p = new Process();
p.StartInfo.FileName = "notepad.EXE";
p.Start();
我将它们放在两个单独按钮的点击事件中。再次,每个按钮在单独单击时正常工作,但单击 button1 然后 button2 使程序崩溃!!!
我真的很困惑...... :(
有趣的是,有时程序不会自行退出并且一切都继续工作,但是在这种情况下,当我正常关闭程序时会出现“vshost.exe已停止工作”对话框。问题详细信息显示 ntdll.dll 是故障模块,有时是 clr.dll。我也得到了这个:故障模块名称:StackHash_4d02