Foxtable(狐表)用户栏目专家坐堂 → [讨论]如何判断负数?(就是限制单元格输入负数)


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

主题:[讨论]如何判断负数?(就是限制单元格输入负数)

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


加好友 发短信
等级:超级版主 帖子:109720 积分:558310 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2016/9/7 17:52:00 [显示全部帖子]

Dim dr As DataRow = e.DataRow
If e.DataCol.Name = "销售数量"
    If e.Newvalue > dr("可用量")
        e.Cancel = True
        MessageBox.Show("不能大于可用量!", "提示", MessageBoxButtons.OK, MessageBoxicon.Error)
    Else
        If e.Newvalue < 0
            e.Cancel = True
            MessageBox.Show("哇!请你不要乱填!", "警告", MessageBoxButtons.OK, MessageBoxicon.Error)
        End If
    End If
End If

 回到顶部