Foxtable(狐表)用户栏目专家坐堂 → [求助]逻辑判断修正


  共有1960人关注过本帖树形打印复制链接

主题:[求助]逻辑判断修正

帅哥,在线噢!
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110569 积分:562735 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2016/10/31 8:49:00 [显示全部帖子]

Select Case e.DataCol.name
    Case "品名"
        If e.DataCol.Name= "品名" Then
            Dim dr As DataRow = e.DataTable.Find("品名='" & e.NewValue & "' and 订单号='" & e.DataRow("订单号") & "' and 型号规格='" & e.DataRow("型号规格") & "'")
            If dr IsNot Nothing Then
                e.DataRow("品名")=Nothing
                e.DataRow("单价") = Nothing
                e.DataRow("计量单位") = Nothing
                MessageBox.Show("2同一订单号已经存在相同型号和规格的行!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
                e.Cancel = True
                Return
            End If
        End If
        
    Case "型号规格"
        If e.DataCol.Name= "型号规格" Then
            Dim dr As DataRow = e.DataTable.Find("型号规格='" & e.NewValue & "' and 订单号='" & e.DataRow("订单号") & "' and 品名='" & e.DataRow("品名") & "'")
            If dr IsNot Nothing Then
                e.DataRow("品名")=Nothing
                e.DataRow("单价") = Nothing
                e.DataRow("计量单位") = Nothing
                e.Cancel = True
                MessageBox.Show("3已经存在相同型号和规格的行!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
                Return
            End If
        End If
End Select

 回到顶部