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.Location = new System.Drawing.Point(68, 18);
this.textBox_recordId.Name = "textBox_recordId"; this.textBox_recordId.Name = "textBox_recordId";
this.textBox_recordId.ReadOnly = true;
this.textBox_recordId.Size = new System.Drawing.Size(116, 21); this.textBox_recordId.Size = new System.Drawing.Size(116, 21);
this.textBox_recordId.TabIndex = 8; this.textBox_recordId.TabIndex = 8;
this.textBox_recordId.Text = "<null>"; this.textBox_recordId.Text = "<null>";

View File

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

View File

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