Foxtable(狐表)用户栏目专家坐堂 → 多列重复


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

主题:多列重复

帅哥哟,离线,有人找我吗?
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110592 积分:562856 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2018/6/9 11:50:00 [显示全部帖子]

……
If spmc >= "" AndAlso ggxh  >= "" Then
    Dim dr As DataRow = e.DataRow
    If e.DataTable.Find("商品名称 = '" & spmc & "' And 规格型号 = '" & ggxh & "'") IsNot Nothing Then
        MessageBox.Show("已经存在相同商品名称和规格型号的商品!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
        e.Cancel = True
    End If
ElseIf ggxh = ""
    Dim dr As DataRow = e.DataRow
    If e.DataTable.Find("商品名称 = '" & spmc & "'") IsNot Nothing Then
        MessageBox.Show("已经存在相同商品名称的商品!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
        e.Cancel = True
    End If
    
End If
……

 回到顶部