v3.8.6.1 1、细化xp运行时多线程出错异常处理代码,避免程序崩溃。2、锁定recordId控件,避免新手随意修改造成的错误。

This commit is contained in:
wisdomwei201804 2018-08-01 15:09:51 +08:00
parent 75ee0a7e57
commit 5e8a6f9765
3 changed files with 33 additions and 17 deletions

View File

@ -250,6 +250,7 @@
//
this.textBox_recordId.Location = new System.Drawing.Point(68, 18);
this.textBox_recordId.Name = "textBox_recordId";
this.textBox_recordId.ReadOnly = true;
this.textBox_recordId.Size = new System.Drawing.Size(116, 21);
this.textBox_recordId.TabIndex = 8;
this.textBox_recordId.Text = "<null>";

View File

@ -210,14 +210,20 @@ namespace net.nutcore.aliddns
try
{
Task task = new Task(() =>
new Thread(()=>
{
var proc = Process.Start(exec);
proc.WaitForExit();
proc.Dispose();
});
task.Start();
task.Wait(); //Wait for new Thread Exception throw
try
{
var proc = Process.Start(exec);
proc.WaitForExit();
proc.Dispose();
}
catch (Exception ex)
{
MessageBox.Show("Ngrok start running error" + ex.ToString());
Console.WriteLine(ex.Message);
}
}).Start();
}
catch (AggregateException ex)
{
@ -230,19 +236,25 @@ namespace net.nutcore.aliddns
{
try
{
Task task = new Task(() =>
new Thread(() =>
{
Process[] pList = Process.GetProcessesByName("Ngrok");
foreach (Process p in pList)
try
{
Console.WriteLine($"Kill: {p.Id}");
p.Kill();
p.WaitForExit();
p.Dispose();
Process[] pList = Process.GetProcessesByName("Ngrok");
foreach (Process p in pList)
{
Console.WriteLine($"Kill: {p.Id}");
p.Kill();
p.WaitForExit();
p.Dispose();
}
}
});
task.Start();
task.Wait(); //Wait for new Thread Exception throw
catch (Exception ex)
{
MessageBox.Show("Ngrok start running error" + ex.ToString());
Console.WriteLine(ex.Message);
}
}).Start();
}
catch (AggregateException ex)
{

View File

@ -1,3 +1,6 @@
v3.8.6.1
1、细化xp运行时多线程出错异常处理代码避免程序崩溃。2、锁定recordId控件避免新手随意修改造成的错误。
v3.8.6.0
1、修改代码.net框架版本由4.5降低到4.0可在WinXP系统运行WinXP系统最高支持.net 4.0。