DBXQuery
I am converting an fr2 report to fr3 in a delphi7 environment. The report has 2 dbxquerys that are related as master/detail. In fr2, I was able to coordinate using paramters. In fr3, it appears that the detail table query occurs once at the beginning, rather then once for each master record selected. The detail band appears below the master band and I've tried both with and without the master property set in the detail query. The user manual only talks about how to do master/detiail via delphi tables/datasets/datasources. How do you do master/detail using dbxquery?
Comments
detail.active := False;
detail.params[0].value :=vartostr(<master."WORKSPACEID">);
detail.params[1].value :=vartostr(<master."BASEID">);
detail.active := True;