GetParentRow

返回该行在指定父表中对应的关联行。

语法:

GetParentRow(ParentName)

ParentName: 父表名称。

例如:

Dim dr As DataRow = DataTables("订单").Datarows(0)
Dim
pr As DataRow = dr.GetParentrow("产品")
Output.Show(pr(
"产品名称"
))

 


本页地址:http://www.foxtable.com/webhelp/topics/0432.htm