Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
我在一个表的DataColChanged事件中写下面的代码,想在“原材料基础数据表”里查找出“料品名称”等于当前行的“料品名称”且“通用范围”里包含有当前表的“成品名称”的行,如果找到就将其“料品编码”输入到当前表中,请问这个代码为什么不行呢?如何做才科学呢?
Select Case e.DataCol.Name
Case "成品名称"
If e.DataRow.IsNull("成品名称") = False Then
Dim s As String =e.DataRow("成品名称")
Dim drs As List(Of DataRow)
drs = DataTables("原材料基础数据表").Select("[料品名称] = '" & e.DataRow("料品名称") & "'")
For Each dr As DataRow In drs
If dr("通用范围").IndexOf(s) > 0 Then
e.DataRow("料品编码")= dr("料品编码")
End If
Next
End If
End Select
现在这样就可以了,请问大家还有其他好的方案吗?
Select Case e.DataCol.Name
Case "成品名称"
If e.DataRow.IsNull("成品名称") = False Then
Dim s As String =e.DataRow("成品名称")
Dim drs As List(Of DataRow)
drs = DataTables("原材料基础数据表").Select("[料品名称] = '" & e.DataRow("料品名称") & "'")
For Each dr As DataRow In drs
If dr("通用范围").IndexOf(s) > -1 Then
e.DataRow("料品编码")= dr("料品编码")
End If
Next
End If
End Select