Foxtable(狐表)用户栏目专家坐堂 → 显示表自动刷新


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

主题:显示表自动刷新

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


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

电站录入这段代码改改

Select Case e.DataCol.Name
    Case "日发电量","日期","名称"
        If e.DataRow.IsNull("名称") = False Then
            Dim dr As DataRow =DataTables("电站").Find("名称='" & e.DataRow("名称")  & "'")
            If dr Is Nothing Then
                dr = DataTables("电站").AddNew()
                dr("名称") = e.DataRow("名称")
            End If
            DataTables("电站").DataCols("名称").RaiseDataColChanged(dr)
            Dim d As Date = e.DataRow("日期")
            d = new Date(d.Year,d.Month,1)
            dr = DataTables("电站月读数").Find("名称='" & e.DataRow("名称")  & "' and 月期=#" & d & "#")
            If dr Is Nothing Then
                dr = DataTables("电站月读数").AddNew()
                dr("名称") = e.DataRow("名称")
                dr("月期") = d
            End If
            DataTables("电站月读数").DataCols("名称").RaiseDataColChanged(dr)
        End If
        If e.DataCol.Name = "名称" AndAlso e.OldValue > "" Then
            Dim dr As DataRow =DataTables("电站").Find("名称='" & e.OldValue  & "'")
            If dr IsNot Nothing Then
                DataTables("电站").DataCols("名称").RaiseDataColChanged(dr)
            End If
            Dim d As Date = e.DataRow("日期")
            d = new Date(d.Year,d.Month,1)
            dr = DataTables("电站月读数").Find("名称='" & e.OldValue   & "' and 月期=#" & d & "#")
            If dr IsNot Nothing Then
                DataTables("电站月读数").DataCols("名称").RaiseDataColChanged(dr)
            End If
        End If
End Select

然后重置名称列

 回到顶部
帅哥,在线噢!
有点蓝
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


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

先把多余的空行删除,改代码后重置一下电站录入名称列

Select Case e.DataCol.Name
    Case "日发电量","日期","名称"
        If e.DataRow.IsNull("名称") = False Then
            Dim dr As DataRow =DataTables("电站").Find("名称='" & e.DataRow("名称")  & "'")
            If dr Is Nothing Then
                dr = DataTables("电站").AddNew()
                dr("名称") = e.DataRow("名称")
            End If
            DataTables("电站").DataCols("名称").RaiseDataColChanged(dr)
            If e.DataRow.IsNull("日期") = False
                Dim d As Date = e.DataRow("日期")
                d = new Date(d.Year,d.Month,1)
                dr = DataTables("电站月读数").Find("名称='" & e.DataRow("名称")  & "' and 月期=#" & d & "#")
                If dr Is Nothing Then
                    dr = DataTables("电站月读数").AddNew()
                    dr("名称") = e.DataRow("名称")
                    dr("月期") = d
                End If
                DataTables("电站月读数").DataCols("名称").RaiseDataColChanged(dr)
            End If
        End If
        If e.DataCol.Name = "名称" AndAlso e.OldValue > "" Then
            Dim dr As DataRow =DataTables("电站").Find("名称='" & e.OldValue  & "'")
            If dr IsNot Nothing Then
                DataTables("电站").DataCols("名称").RaiseDataColChanged(dr)
            End If
            Dim d As Date = e.DataRow("日期")
            d = new Date(d.Year,d.Month,1)
            dr = DataTables("电站月读数").Find("名称='" & e.OldValue   & "' and 月期=#" & d & "#")
            If dr IsNot Nothing Then
                DataTables("电站月读数").DataCols("名称").RaiseDataColChanged(dr)
            End If
        End If
End Select

 回到顶部