以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 问题,自动退出系统 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=68670) |
-- 作者:yongxuanchen -- 发布时间:2015/5/22 10:48:00 -- 问题,自动退出系统 If e.DataCol.Name = "出厂编号" Then 我在datarowchanging那里写了这段代码,当出厂编号列不为空,当进行复制当前行时,出现系统自动退出,请问什么问题? |
-- 作者:Bin -- 发布时间:2015/5/22 10:49:00 -- 这段代码没问题, 把剩下的代码发出来. 或者你DataColChanged的代码.
|
-- 作者:yongxuanchen -- 发布时间:2015/5/22 12:33:00 -- 这是datacolchanged的代码 Dim a As Integer = Rand.Next(3,60) If e.DataRow("轿厢缓冲器型式") ="液压缓冲器" Then
Vars("ping1")=10*0.01*Math.Abs(e.DataRow("平衡系数电流上行30")-e.DataRow("平衡系数电流下行30"))/(Math.Abs(e.DataRow("平衡系数电流上行30")-e.DataRow("平衡系数电流下行30"))+Math.Abs(e.DataRow("平衡系数电流上行40")-e.DataRow("平衡系数电流下行40")))+0.3 If e.DataRow("平衡系数电流上行30") >= e.DataRow("平衡系数电流下行30") And e.DataRow.isnull("平衡系数电流上行30") Then Dim dr As DataRow = e.DataRow pf = Format(dr("竣工日期"),"yyMM-") \'否则获得编号的前缀,两位年,两位月 |
-- 作者:Bin -- 发布时间:2015/5/22 14:24:00 -- DataColChanged的代码一定要加入 列名判断.绝对不可以没有 if e.datacol.name ="设备名称" then Dim a As Integer = Rand.Next(3,60) Dim s5 As String = a If e.DataRow("设备名称") ="无机房客梯" Or e.DataRow("设备名称") ="无机房货梯" Then e.DataRow("紧急电动") ="/" e.DataRow("共用机房") ="/" e.DataRow("机房结果") ="/" e.DataRow("机房结论") ="/" e.DataRow("机房门高") ="/" e.DataRow("机房门宽") ="/" e.DataRow("直梯梯高") ="/" e.DataRow("直梯通道高") ="/" e.DataRow("直梯梯夹角") ="/" e.DataRow("机房高度差") ="/" e.DataRow("圈框") ="/" e.DataRow("机深度") ="/" e.DataRow("机宽度") ="/" e.DataRow("机高度") ="/" e.DataRow("无机房结果") ="符合" e.DataRow("无机房结论") ="合格" End If end if 你其余的代码,也应该根据对应情况,全部加上 列名判断
|
-- 作者:大红袍 -- 发布时间:2015/5/22 14:25:00 -- http://www.foxtable.com/help/topics/1522.htm
|