Commit 5659e826 authored by leon.huang's avatar leon.huang

版本1.6.8 第三次release 修改之前输入限制造成的BUG

parent 5bba8238
...@@ -226,9 +226,9 @@ namespace GcDevicePc.ConfigMethod.injectionport ...@@ -226,9 +226,9 @@ namespace GcDevicePc.ConfigMethod.injectionport
txtSeptumBlowingflow.Enabled = false; txtSeptumBlowingflow.Enabled = false;
} }
txtHeater.Text = this.methodconfig.auxs[index].HeaterTmpActual.ToString();
textBox1.Text = configTemp.ToString(); textBox1.Text = configTemp.ToString();
txtHeater.Text = this.methodconfig.auxs[index].HeaterTmpActual.ToString();
lblSamplePortType.Text = (index == 0 ? this.hwconfig.hwconfiginfo.u16AuxHeaterName1 : this.hwconfig.hwconfiginfo.u16AuxHeaterName2); lblSamplePortType.Text = (index == 0 ? this.hwconfig.hwconfiginfo.u16AuxHeaterName1 : this.hwconfig.hwconfiginfo.u16AuxHeaterName2);
combSampleCarrierGas.SelectedIndex = this.methodconfig.auxs[index].CarrierGasType; combSampleCarrierGas.SelectedIndex = this.methodconfig.auxs[index].CarrierGasType;
......
...@@ -54,7 +54,7 @@ using System.Collections.Generic; ...@@ -54,7 +54,7 @@ using System.Collections.Generic;
string file = Path.Combine(Path.GetDirectoryName(System.Windows.Forms.Application.StartupPath), "GC_Config\\GC_Set\\启动参数\\startup.ini"); string file = Path.Combine(Path.GetDirectoryName(System.Windows.Forms.Application.StartupPath), "GC_Config\\GC_Set\\启动参数\\startup.ini");
INIOperation test = new INIOperation(file); INIOperation test = new INIOperation(file);
string Meshport = test.INIGetStringValue("NetWorkConfig", "网口", null); // string Meshport = test.INIGetStringValue("NetWorkConfig", "网口", null);
string MacAddress = test.INIGetStringValue("NetWorkConfig", "MAC地址", null); string MacAddress = test.INIGetStringValue("NetWorkConfig", "MAC地址", null);
string SearchOnline = test.INIGetStringValue("NetWorkConfig", "是否只搜索在线", null); string SearchOnline = test.INIGetStringValue("NetWorkConfig", "是否只搜索在线", null);
string strSearchTiem = test.INIGetStringValue("NetWorkConfig", "搜索时间", null); string strSearchTiem = test.INIGetStringValue("NetWorkConfig", "搜索时间", null);
...@@ -77,7 +77,7 @@ using System.Collections.Generic; ...@@ -77,7 +77,7 @@ using System.Collections.Generic;
foreach (NetworkInterface adapter in nics) foreach (NetworkInterface adapter in nics)
{ {
if (adapter.OperationalStatus == OperationalStatus.Up && (adapter.Name == Meshport || string.IsNullOrEmpty(Meshport))) if (adapter.OperationalStatus == OperationalStatus.Up) //&& (adapter.Name == Meshport || string.IsNullOrEmpty(Meshport)))
{ {
bool pd1 = (adapter.NetworkInterfaceType == NetworkInterfaceType.Ethernet || adapter.NetworkInterfaceType == NetworkInterfaceType.Wireless80211); //判断是否是以太网连接 bool pd1 = (adapter.NetworkInterfaceType == NetworkInterfaceType.Ethernet || adapter.NetworkInterfaceType == NetworkInterfaceType.Wireless80211); //判断是否是以太网连接
if (pd1) if (pd1)
......
...@@ -149,6 +149,7 @@ ...@@ -149,6 +149,7 @@
this.Name = "StartForm"; this.Name = "StartForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "StartForm"; this.Text = "StartForm";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.StartForm_FormClosed);
this.Load += new System.EventHandler(this.StartForm_Load); this.Load += new System.EventHandler(this.StartForm_Load);
((System.ComponentModel.ISupportInitialize)(this.bgpicture)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.bgpicture)).EndInit();
this.ResumeLayout(false); this.ResumeLayout(false);
......
...@@ -29,6 +29,7 @@ namespace GcDevicePc ...@@ -29,6 +29,7 @@ namespace GcDevicePc
private bool bBindOK = false; private bool bBindOK = false;
private bool bStartSearchOK = false; private bool bStartSearchOK = false;
private bool bWaitOver = false; private bool bWaitOver = false;
private bool bNoSearchOK = false;
#region 窗口淡入淡出效果 #region 窗口淡入淡出效果
private void OpacityTimerProcOpen(object sender, System.Timers.ElapsedEventArgs e) private void OpacityTimerProcOpen(object sender, System.Timers.ElapsedEventArgs e)
{ {
...@@ -148,7 +149,7 @@ namespace GcDevicePc ...@@ -148,7 +149,7 @@ namespace GcDevicePc
_tPreload.Start(); _tPreload.Start();
SearchHMIThread = new Thread(new ThreadStart(vSearch_HMI_Poll)); //创建线程 SearchHMIThread = new Thread(vSearch_HMI_Poll); //创建线程
} }
...@@ -220,6 +221,22 @@ namespace GcDevicePc ...@@ -220,6 +221,22 @@ namespace GcDevicePc
} }
})); }));
} }
if (bNoSearchOK == true)
{
bNoSearchOK= false;
DialogResult dr = new ConnTimeOut().ShowDialog();
if (dr == DialogResult.OK)
{
globaldata.connection_ip = "";
bBindOK = true;
break;
}
else if (dr == DialogResult.Cancel)
{
System.Diagnostics.Process.GetCurrentProcess().Kill();
}
}
Thread.Sleep(10);
} }
//_opacityTimer.Enabled = true; //_opacityTimer.Enabled = true;
bWaitOver = true; bWaitOver = true;
...@@ -301,17 +318,7 @@ namespace GcDevicePc ...@@ -301,17 +318,7 @@ namespace GcDevicePc
if (globaldata.DeviceList.Count < 1) if (globaldata.DeviceList.Count < 1)
{ {
DialogResult dr = new ConnTimeOut().ShowDialog(); bNoSearchOK = true;
if (dr == DialogResult.OK)
{
globaldata.connection_ip = "";
bBindOK = true;
}
else if (dr == DialogResult.Cancel)
{
System.Diagnostics.Process.GetCurrentProcess().Kill();
}
} }
else else
{ {
...@@ -320,8 +327,11 @@ namespace GcDevicePc ...@@ -320,8 +327,11 @@ namespace GcDevicePc
mysearch.ThStart(); mysearch.ThStart();
} }
} }
} }
private void StartForm_FormClosed(object sender, FormClosedEventArgs e)
{
System.Environment.Exit(0);
}
} }
} }
...@@ -590,7 +590,7 @@ ...@@ -590,7 +590,7 @@
<value>17, 17</value> <value>17, 17</value>
</metadata> </metadata>
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>35</value> <value>132</value>
</metadata> </metadata>
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>
......
B[仪器编号] B[仪器编号]
B[方法名称] B[方法名称]
[NetWorkConfig] [NetWorkConfig]
MAC地址=F8:02:78:60:70:A0 MAC地址=F8:02:78:60:70:A0
网口= 网口=本地连接
搜索时间=60 搜索时间=10
[StartUp] [StartUp]
自启动=0 自启动=0
打开系统=0 打开系统=0
...@@ -23,7 +23,7 @@ AppName= ...@@ -23,7 +23,7 @@ AppName=
Name=admin Name=admin
Password=0 Password=0
[SendData] [SendData]
Thirdparty=3 Thirdparty=1
Foreign=2 Foreign=2
[SaveData] [SaveData]
ZBSaveData=1 ZBSaveData=1
2020-04-22 17:03:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:03:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:22:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:23:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:04:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:23:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:05:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:23:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:05:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:23:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:05:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:23:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:05:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:23:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:05:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:23:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:05:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:23:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:05:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:23:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:05:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:23:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:05:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:23:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:05:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 2020-04-29 08:23:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index 参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource) 在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index) 在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477 在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:05:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。 【2020-04-29 08:23:37】System.InvalidOperationException: 未在侦听。调用此方法前必须先调用 Start() 方法。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:05:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
【2020-04-22 17:05:36】System.InvalidOperationException: 未在侦听。调用此方法前必须先调用 Start() 方法。
在 System.Net.Sockets.TcpListener.Pending()
在 ModbusLib.TcpService.Accept() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\gcdevicepc_nmoc8-16\ModbusLib\TcpService.cs:行号 111
【2020-04-22 17:24:00】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
在 System.Net.Sockets.Socket.Bind(EndPoint localEP)
在 System.Net.Sockets.TcpListener.Start(Int32 backlog)
在 System.Net.Sockets.TcpListener.Start()
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\gcdevicepc_nmoc8-16\ModbusLib\TcpService.cs:行号 51
【2020-04-22 17:24:00】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\gcdevicepc_nmoc8-16\ModbusLib\TcpService.cs:行号 64
在 ModbusLib.TcpService.tcpStart(String addr, Int32 intport) 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\gcdevicepc_nmoc8-16\ModbusLib\TcpService.cs:行号 24
2020-04-22 17:24:00System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 473
2020-04-22 17:24:00System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:18System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:18System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:36System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:36System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:24:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
【2020-04-22 17:37:26】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
在 System.Net.Sockets.Socket.Bind(EndPoint localEP)
在 System.Net.Sockets.TcpListener.Start(Int32 backlog)
在 System.Net.Sockets.TcpListener.Start()
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\gcdevicepc_nmoc8-16\ModbusLib\TcpService.cs:行号 51
【2020-04-22 17:37:26】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\gcdevicepc_nmoc8-16\ModbusLib\TcpService.cs:行号 64
在 ModbusLib.TcpService.tcpStart(String addr, Int32 intport) 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\gcdevicepc_nmoc8-16\ModbusLib\TcpService.cs:行号 24
2020-04-22 17:37:27System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 473
2020-04-22 17:37:27System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:37:32System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:37:32System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:37:38System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:37:38System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:37:44System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:37:44System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:37:50System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:37:50System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:37:56System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:37:56System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:38:02System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:38:02System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
【2020-04-22 17:38:06】System.InvalidOperationException: 未在侦听。调用此方法前必须先调用 Start() 方法。
在 System.Net.Sockets.TcpListener.Pending()
在 ModbusLib.TcpService.Accept() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\gcdevicepc_nmoc8-16\ModbusLib\TcpService.cs:行号 111
【2020-04-22 17:40:11】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
在 System.Net.Sockets.Socket.Bind(EndPoint localEP)
在 System.Net.Sockets.TcpListener.Start(Int32 backlog)
在 System.Net.Sockets.TcpListener.Start()
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\gcdevicepc_nmoc8-16\ModbusLib\TcpService.cs:行号 51
【2020-04-22 17:40:11】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\gcdevicepc_nmoc8-16\ModbusLib\TcpService.cs:行号 64
在 ModbusLib.TcpService.tcpStart(String addr, Int32 intport) 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\gcdevicepc_nmoc8-16\ModbusLib\TcpService.cs:行号 24
2020-04-22 17:40:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 473
2020-04-22 17:40:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:40:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:40:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:40:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:40:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:40:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:40:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:40:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:40:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:40:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:40:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:40:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:40:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:40:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:40:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:40:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:40:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:06System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:06System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:41:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:42:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:43:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:44:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:17System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:23System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:29System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:35System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:41System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:47System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:53System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:45:59System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:46:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:46:05System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:46:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
2020-04-22 17:46:11System.ArgumentOutOfRangeException: 索引超出范围。必须为非负值并小于集合大小。
参数名: index
在 System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
在 System.Collections.Generic.List`1.get_Item(Int32 index)
在 GcDevicePc.CK_UI.UserCtl.datadisp() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\Vocs_opt\GcDevicePc\CK_UI\UserCtl.cs:行号 477
【2020-04-22 17:46:14】System.InvalidOperationException: 未在侦听。调用此方法前必须先调用 Start() 方法。
在 System.Net.Sockets.TcpListener.Pending() 在 System.Net.Sockets.TcpListener.Pending()
在 ModbusLib.TcpService.Accept() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\gcdevicepc_nmoc8-16\ModbusLib\TcpService.cs:行号 111 在 ModbusLib.TcpService.Accept() 位置 C:\Users\a\Desktop\色谱仪\新建文件夹\gcdevicepc_nmoc8-16\ModbusLib\TcpService.cs:行号 111
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -307,3 +307,72 @@ ...@@ -307,3 +307,72 @@
【2020-04-22 17:40:11.2219】,服务器开始启动:192.168.1.123:12345 【2020-04-22 17:40:11.2219】,服务器开始启动:192.168.1.123:12345
【2020-04-22 17:40:20.9379】,用户admin,进入调试模式 【2020-04-22 17:40:20.9379】,用户admin,进入调试模式
【2020-04-22 17:46:14.8187】,服务器重启: 【2020-04-22 17:46:14.8187】,服务器重启:
【2020-04-23 09:28:19.1593】,服务器开始启动:192.168.2.105:12345
【2020-04-23 09:28:36.1628】,服务器开始启动:192.168.2.105:12345
【2020-04-23 09:28:59.5837】,服务器开始启动:192.168.2.105:12345
【2020-04-23 09:34:06.4272】,服务器开始启动:192.168.2.105:12345
【2020-04-23 09:34:14.0698】,用户admin,进入调试模式
【2020-04-23 09:56:07.5089】,服务器开始启动:192.168.2.105:12345
【2020-04-23 10:52:30.4367】,服务器开始启动:192.168.2.105:12345
【2020-04-23 11:04:57.2909】,服务器开始启动:192.168.2.105:12345
【2020-04-23 11:05:03.2749】,用户admin,进入调试模式
【2020-04-23 11:06:26.7462】,服务器开始启动:192.168.1.123:12345
【2020-04-23 11:07:30.8408】,用户admin,进入调试模式
【2020-04-23 11:09:45.2181】,服务器重启:
【2020-04-23 11:10:49.6020】,服务器开始启动:169.254.9.97:12345
【2020-04-23 11:11:10.9668】,服务器重启:
【2020-04-23 11:12:03.4625】,服务器开始启动:169.254.9.97:12345
【2020-04-23 11:12:14.9388】,用户admin,进入调试模式
【2020-04-23 11:13:32.3727】,服务器开始启动:192.168.1.27:12345
【2020-04-23 11:26:33.8321】,服务器开始启动:192.168.1.27:12345
【2020-04-23 11:26:38.7560】,用户admin,进入调试模式
【2020-04-24 08:32:28.0225】,服务器开始启动:192.168.2.105:12345
【2020-04-24 08:40:11.7515】,服务器开始启动:192.168.1.27:12345
【2020-04-24 08:40:20.6986】,用户admin,进入调试模式
【2020-04-24 08:41:26.7596】,用户admin,进入调试模式
【2020-04-24 08:41:56.8512】,服务器重启:
【2020-04-24 08:47:56.2593】,服务器开始启动:192.168.1.27:12345
【2020-04-24 08:48:11.5983】,服务器重启:
【2020-04-24 09:20:02.2210】,服务器开始启动:192.168.1.27:12345
【2020-04-24 09:24:01.1476】,服务器开始启动:192.168.1.27:12345
【2020-04-24 09:27:56.5831】,服务器重启:
【2020-04-24 09:29:02.2076】,服务器开始启动:192.168.1.27:12345
【2020-04-24 09:32:16.4552】,服务器开始启动:192.168.1.27:12345
【2020-04-24 09:32:33.9564】,用户admin,进入调试模式
【2020-04-24 09:33:30.1402】,服务器开始启动:192.168.1.27:12345
【2020-04-24 09:33:43.4765】,用户admin,进入调试模式
【2020-04-24 09:34:52.6321】,服务器开始启动:192.168.1.27:12345
【2020-04-24 09:48:03.6241】,服务器开始启动:192.168.1.27:12345
【2020-04-24 09:48:07.8438】,服务器重启:
【2020-04-26 16:16:43.7071】,服务器开始启动:192.168.1.27:12345
【2020-04-26 16:16:50.8331】,用户admin,进入调试模式
【2020-04-26 16:17:45.8769】,服务器重启:
【2020-04-26 16:18:17.7516】,服务器开始启动:192.168.1.27:12345
【2020-04-26 16:18:34.9437】,用户admin,进入调试模式
【2020-04-26 16:19:38.5236】,用户admin,进入调试模式
【2020-04-26 16:30:24.3851】,1334676
【2020-04-26 16:31:02.9620】,A开始保存数据
【2020-04-26 16:31:02.9809】,True
【2020-04-26 16:31:03.0208】,A保存
【2020-04-26 16:31:03.0707】,True
【2020-04-26 16:31:03.0816】,A保存
【2020-04-26 16:31:22.5960】,1392637
【2020-04-26 16:33:05.9736】,A开始保存数据
【2020-04-26 16:33:05.9846】,True
【2020-04-26 16:33:06.0115】,A保存
【2020-04-26 16:36:08.5668】,1678748
【2020-04-26 16:43:48.4031】,A开始保存数据
【2020-04-26 16:43:48.4141】,True
【2020-04-26 16:43:48.4470】,A保存
【2020-04-26 16:44:25.6415】,服务器重启:
【2020-04-28 11:10:14.0333】,服务器开始启动:192.168.1.123:12345
【2020-04-28 11:12:12.2082】,用户admin,进入调试模式
【2020-04-28 11:43:52.7226】,进入自动销户
【2020-04-28 12:13:36.9750】,服务器重启:
【2020-04-28 15:13:13.3186】,服务器开始启动:192.168.1.123:12345
【2020-04-28 15:13:18.4729】,用户admin,进入调试模式
【2020-04-28 15:15:08.9215】,服务器重启:
【2020-04-28 15:15:43.4418】,服务器开始启动:192.168.1.123:12345
【2020-04-28 15:15:48.4237】,用户admin,进入调试模式
【2020-04-29 04:26:26.4403】,进入自动销户
【2020-04-29 08:23:37.5709】,服务器重启:
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment