Foxtable(狐表)用户栏目专家坐堂 → 为什么代码不起作用


  共有3301人关注过本帖平板打印复制链接

主题:为什么代码不起作用

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


加好友 发短信
等级:幼狐 帖子:139 积分:1110 威望:0 精华:0 注册:2013/10/9 11:32:00
  发帖心情 Post By:2015/6/15 16:07:00 [只看该作者]

Dim dg As DataRow = DataTables("库存材料表").Find("[物料代码] = '" & e.DataRow("物料代码") & "'","_Identify Desc")'获得最后一行
Select Case e.DataCol.name
    Case "出库数量"
        If dg Is Nothing Then '如果找到了同名的物料代码行,也就是dr不是Nothing
            'msgbox("在库存没找到物料")
            'e.Cancel = True
            e.NewValue = Nothing
        Else
            
            If e.newvalue <= 0 Then
                e.newValue = Nothing
            End If
        End If
        Dim dms As List(Of String)
        dms = DataTables("材料发放明细表").GetValues("物料代码")
        For Each dm As String In dms
            If dms("记账") = False Then
                Dim Sun As Double
                Sun =  DataTables("材料发放明细表").Compute("Sum(出库数量)", "[物料代码] = ' & dms & '")
                If sun >= dg("库存数量") Then
                    MsgBox("出库量不能大于库存量!")
                    e.DataRow("出库数量") = Nothing
                    'e.Cancel = True
                End If
            End If
        Next
        
End Select

这段代码中   Dim dms As List(Of String)
        dms = DataTables("材料发放明细表").GetValues("物料代码")
        For Each dm As String In dms
            If dms("记账") = False Then       如何修改?


 回到顶部
总数 24 1 2 3 下一页