Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
没问题吧,只要外部数据名相同就没问题。
谢谢
我已经改用IP。。。
Dim ab As DataRow
ab = DataTables("交期计算参数").Find("[客户名称] = '" & e.NewValue & "'")
If ab IsNot Nothing Then
dr("日期计算参数") = ab("日期计算参数")
else
Messagebox.Show("提示: 交期计算参数表中 没有此客户的日期计算参数,请定义.系统发生错误,请填写,谢谢! :) ","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
End If
此代码位置在定单表中(定单表是外部数据源), 交期计算参数表是内部表,,,,
执行此代码时
ab = DataTables("交期计算参数").Find("[客户名称] = '" & e.NewValue & "'")
If ab IsNot Nothing Then
dr("日期计算参数") = ab("日期计算参数")
else
此部分不执行,,,,认真检查过,表名,列名,都是OK的,客户名称也是一致的(列项目都来源于客户资料表)
ab = DataTables("交期计算参数").Find("[客户名称] = '" & e.NewValue & "'")
是不是 交期计算参数表,也要是外部数据源才能执行此命令?????