Rss & SiteMap

Foxtable(狐表) http://www.foxtable.com

新一代数据库软件,完美融合Access、Foxpro、Excel、vb.net之优势,人人都能掌握的快速软件开发工具!
共2 条记录, 每页显示 10 条, 页签: [1]
[浏览完整版]

标题:动态提示

1楼
13775189031 发表于:2024/10/1 13:16:00
请教老师:第一段代码有什么问题?输入值大于上偏差,没有提示,但第二段输入值小于下偏差,有动态提示!

If e.DataCol.name = "实测偏差_肢宽mm" Then
    If e.DataRow("实测偏差_肢宽mm") > e.DataRow("允许偏差_肢宽mm_上偏差") Then
        e.DataRow.SetError("实测偏差_肢宽mm", "不能大于上偏差!")
    Else
        e.DataRow.SetError("实测偏差_肢宽mm","")
    End If
End If

If e.DataCol.name = "实测偏差_肢宽mm" Then
    If e.DataRow("实测偏差_肢宽mm") < e.DataRow("允许偏差_肢宽mm_下偏差") Then
        e.DataRow.SetError("实测偏差_肢宽mm", "不能小于下偏差!")
    Else
        e.DataRow.SetError("实测偏差_肢宽mm","")
    End If
End If

2楼
有点蓝 发表于:2024/10/5 20:32:00
If e.DataCol.name = "实测偏差_肢宽mm" Then
    If e.DataRow("实测偏差_肢宽mm") > e.DataRow("允许偏差_肢宽mm_上偏差") Then
        e.DataRow.SetError("实测偏差_肢宽mm", "不能大于上偏差!")
    ElseIf e.DataRow("实测偏差_肢宽mm") < e.DataRow("允许偏差_肢宽mm_下偏差") Then
        e.DataRow.SetError("实测偏差_肢宽mm", "不能小于下偏差!")
    Else
        e.DataRow.SetError("实测偏差_肢宽mm", "")
    End If
End If
共2 条记录, 每页显示 10 条, 页签: [1]

Copyright © 2000 - 2018 foxtable.com Tel: 4000-810-820 粤ICP备11091905号

Powered By Dvbbs Version 8.3.0
Processed in .02930 s, 2 queries.