Dim b As integer = Tables("当前表").Current("编号")
Dim dr As DataRow = DataTables("另一表").Find("[编号] = '" & b & "'")
if dr Is Nothing
output.show("没有该号!")
End If
[此贴子已经被作者于2008-12-3 17:31:56编辑过]
注意,Find 的参数,必须组合得到.
你一楼的 "[编号] = 'b'" 是错误的. 系统只会把b当成一个字母,而不是你申明的整型变量.
以下是引用lxl在2008-12-3 17:31:00的发言:Dim b As integer = Tables("当前表").Current("编号")
Dim dr As DataRow = DataTables("另一表").Find("[编号] = '" & b & "'")
if dr Is Nothing
output.show("没有该号!")
End If
[此贴子已经被作者于2008-12-3 17:31:56编辑过]
提示错误!
此主题相关图片如下:未命名.jpg
[此贴子已经被作者于2008-12-3 17:38:22编辑过]