v3.8.6.1 1、细化xp运行时多线程出错异常处理代码,避免程序崩溃。2、锁定recordId控件,避免新手随意修改造成的错误。
This commit is contained in:
parent
75ee0a7e57
commit
5e8a6f9765
@ -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>";
|
||||||
|
@ -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)
|
||||||
{
|
{
|
||||||
|
@ -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。
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user