0

给定主:记录 A B

详细选择记录 YA NA YB NB

使用带有索引记录的 mastersource

如果光标 i 在 A(主)上,则详细显示链接到 A 的两条记录(依此类推)。还行吧。如果我离开窗口,我想检查详细信息 A 中的所有记录是否都有 Y,然后所有记录 B 中的所有详细信息都有 Y。但似乎我只能检查以 master 为重点的 master/detail。如果我在 A 主记录上,我无法详细找到 B 记录。有没有办法遍历主程序,从第一条记录开始获取详细信息,然后是第二条记录并获取详细信息?

4

1 回答 1

2

当然有:

MasterTable.First;
while not MasterTable.Eof do
begin
  while not ChildTable.Eof do
  begin
    // Access child table data here. It will contain only the
    // rows related to the current row of MasterTable
    ChildTable.Next;
  end;
  MasterTable.Next;
end;
于 2013-02-28T13:34:41.673 回答