Rss & SiteMap

Foxtable(狐表) http://www.foxtable.com

新一代数据库软件,完美融合Access、Foxpro、Excel、vb.net之优势,人人都能掌握的快速软件开发工具!
共7 条记录, 每页显示 10 条, 页签: [1]
[浏览完整版]

标题:字符合并

1楼
13775189031 发表于:2024/11/2 10:22:00
请教老师:以零部件编号为关联,A表中的A/B列内容在B表中合并成一列,如何实现

A表      列A     列B
           a        b
B表      列A
           a,b    
2楼
有点蓝 发表于:2024/11/2 10:27:00
http://www.foxtable.com/webhelp/topics/1451.htm

表A,datacolchanged

Select Case e.DataCol.Name
    Case
 "
列A","列B"
        
Dim dr As DataRow = e.DataRow
        
Dim pr As DataRow

            
Dim filter As String
            filter = 
"零部件编号 = '" & dr("零部件编号") & "'"
            pr = 
DataTables("B表").Find(filter)
            If
 pr IsNot Nothing 
Then
                pr(
"列A") = dr("列A") & "," & dr("列B")
            End
 
If

End
 Select
3楼
13775189031 发表于:2024/11/2 14:16:00
请老师看下 ,下面的代码哪里有问题?
Select Case e.DataCol.name
    Case "锻件","规格"
        If e.DataRow("锻件") = False Then
            DataTables("锻铸件清单").DeleteFor("零部件编号='" & e.DataRow("零部件编号") & "'")
        Else
            Dim ndr As Row = Tables("锻铸件清单").AddNew
            ndr("零部件编号") = e.DataRow("零部件编号")
            ndr("制单日期") = e.DataRow("制单日期")
            ndr("生产令号") = e.DataRow("生产令号")
            ndr("项目名称") = e.DataRow("项目名称")
            ndr("机组") = e.DataRow("机组")
            ndr("零部件名称") = e.DataRow("零部件名称")
            ndr("零部件图号") = e.DataRow("零部件图号")
            ndr("数量") = e.DataRow("数量")
            ndr("材质") = e.DataRow("材质")
            ndr("材料批次") = e.DataRow("材料批次")
            ndr("零部件标识") = e.DataRow("零部件标识")
            ndr.Move(0)
            ndr("_sortkey") = DataTables("锻铸件清单").sqlcompute("min([_sortkey])") - 0.00000001
        End If
        Dim filter As String
        Dim pr As DataRow
        filter = "零部件编号 = '" & e.DataRow("零部件编号") & "'"
        pr = DataTables("锻铸件清单").Find(filter)
        If e.DataRow("规格").Contains("δ") Then
            pr("下料尺寸") = e.DataRow("规格") & "×" & e.DataRow("下料尺寸")
        Else
            If e.DataRow("规格").Contains("φ") Then
                pr("下料尺寸") = e.DataRow("规格") & "," & e.DataRow("下料尺寸")
            Else
                pr("下料尺寸") = e.DataRow("规格")
            End If
        End If
End Select
[此贴子已经被作者于2024/11/2 14:17:01编辑过]
4楼
有点蓝 发表于:2024/11/2 14:43:00
……
           ndr("数量") = e.DataRow("数量")
            ndr("材质") = e.DataRow("材质")
            ndr("材料批次") = e.DataRow("材料批次")
            ndr("零部件标识") = e.DataRow("零部件标识")
            ndr.Move(0)
            ndr("_sortkey") = DataTables("锻铸件清单").sqlcompute("min([_sortkey])") - 0.00000001
        If e.DataRow("规格").Contains("δ") Then
            ndr("下料尺寸") = e.DataRow("规格") & "×" & e.DataRow("下料尺寸")
        Else
            If e.DataRow("规格").Contains("φ") Then
                ndr("下料尺寸") = e.DataRow("规格") & "," & e.DataRow("下料尺寸")
            Else
                ndr("下料尺寸") = e.DataRow("规格")
            End If
        End If
        End If

End Select
5楼
13775189031 发表于:2024/11/2 16:06:00
要求表A中的列“规格”、“下料尺寸”变化时,表“铸锻件清单”中列“下料尺寸”,能够自动变更,现在但表A中列“下料尺寸”变化时,表“铸锻件清单”中列“下料尺寸”不能自动变更,是哪里有问题(“规格”列变化时,“铸锻件清单”中的“下料尺寸”能够自动变更)
6楼
有点蓝 发表于:2024/11/2 16:17:00
Select Case e.DataCol.name
    Case "锻件"
        If e.DataRow("锻件") = False Then
            DataTables("锻铸件清单").DeleteFor("零部件编号='" & e.DataRow("零部件编号") & "'")
        Else
            Dim ndr As Row = Tables("锻铸件清单").AddNew
            ndr("零部件编号") = e.DataRow("零部件编号")
            ndr("制单日期") = e.DataRow("制单日期")
            ndr("生产令号") = e.DataRow("生产令号")
            ndr("项目名称") = e.DataRow("项目名称")
            ndr("机组") = e.DataRow("机组")
            ndr("零部件名称") = e.DataRow("零部件名称")
            ndr("零部件图号") = e.DataRow("零部件图号")
            ndr("数量") = e.DataRow("数量")
            ndr("材质") = e.DataRow("材质")
            ndr("材料批次") = e.DataRow("材料批次")
            ndr("零部件标识") = e.DataRow("零部件标识")
            ndr.Move(0)
            ndr("_sortkey") = DataTables("锻铸件清单").sqlcompute("min([_sortkey])") - 0.00000001
            If e.DataRow("规格").Contains("δ") Then
                ndr("下料尺寸") = e.DataRow("规格") & "×" & e.DataRow("下料尺寸")
            Else
                If e.DataRow("规格").Contains("φ") Then
                    ndr("下料尺寸") = e.DataRow("规格") & "," & e.DataRow("下料尺寸")
                Else
                    ndr("下料尺寸") = e.DataRow("规格")
                End If
            End If
        End If
    Case "下料尺寸", "规格"
        Dim filter As String
        Dim pr As DataRow
        filter = "零部件编号 = '" & e.DataRow("零部件编号") & "'"
        pr = DataTables("锻铸件清单").Find(filter)
        If pr Is Nothing Then
            pr = DataTables("锻铸件清单").SQLFind(filter)
        End If
        If pr IsNot Nothing Then
            If e.DataRow("规格").Contains("δ") Then
                pr("下料尺寸") = e.DataRow("规格") & "×" & e.DataRow("下料尺寸")
            Else
                If e.DataRow("规格").Contains("φ") Then
                    pr("下料尺寸") = e.DataRow("规格") & "," & e.DataRow("下料尺寸")
                Else
                    pr("下料尺寸") = e.DataRow("规格")
                End If
            End If
            pr.save
        End If
End Select
7楼
13775189031 发表于:2024/11/4 13:08:00
谢谢

共7 条记录, 每页显示 10 条, 页签: [1]

Copyright © 2000 - 2018 foxtable.com Tel: 4000-810-820 粤ICP备11091905号

Powered By Dvbbs Version 8.3.0
Processed in .25781 s, 2 queries.