Foxtable(狐表)用户栏目专家坐堂 → 不允许输入相同的数据行


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

主题:不允许输入相同的数据行

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


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2018/12/14 13:39:00 [显示全部帖子]

Select Case e.DataCol.name
    Case "年月"
        If e.NewValue <> nothing AndAlso e.DataRow.IsNull("姓名") = False
            Dim dr As DataRow = e.DataRow
            If e.DataTable.Find("年月 = '" & e.NewValue & "' And 姓名 = '" & dr("姓名") & "'") IsNot Nothing Then
                MessageBox.Show("已经存在相同年月和姓名的行!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
                e.Cancel = True
            End If
        End If
    Case "姓名"
        If e.newvalue <> nothing AndAlso e.DataRow.IsNull("年月") = False
            Dim dr As DataRow = e.DataRow
            If e.DataTable.Find("年月 = '" & dr("年月") & "' And 姓名 = '" & e.NewValue & "'") IsNot Nothing Then
                MessageBox.Show("已经存在相同年月和姓名的行!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
                e.Cancel = True
            End If
        End If
End Select

 回到顶部