for q := 0 to Prt_RGrid1.RowCount -1 do
begin
with Prt_RGrid1 do
begin
fQPay_PayList1.QRLabel15.caption := Cells[0,RowCount-1].AsString;
fQPay_PayList1.QRLabel16.caption := Cells[1,RowCount-1].AsString;
fQPay_PayList1.QRLabel17.caption := floattostr(Prt_RGrid1.Cells[2,RowCount-1].AsFloat);
fQPay_PayList1.QRLabel18.caption := floattostr(Prt_RGrid1.Cells[3,RowCount-1].AsFloat);
fQPay_PayList1.QRLabel19.caption := floattostr(Prt_RGrid1.Cells[4,RowCount-1].AsFloat);
fQPay_PayList1.QRLabel20.caption := floattostr(Prt_RGrid1.Cells[5,RowCount-1].AsFloat);
fQPay_PayList1.QRLabel21.caption := floattostr(Prt_RGrid1.Cells[6,RowCount-1].AsFloat);
end;
end;
=========================================================================
위에 소스에 보시는 것처럼 prt_rgrid1에 출력되는 그리드 모두를 퀵리포트의 detail에 QRLabel들에 출력을 하려고 하는데요 맘대로 나타나지 않네요...
그리드의 있는 내용을 퀵리포트를 이용해서 출력하게 하려고 할때 어떻게 해야하는지 고수님들의 조언을 부탁드립니다.
DB에서 쿼리를 이용해서 불러오는 방법 말구요....
그냥 그리드의 있는 상세 내용을 detail에 바로 붙이는 방법이요...ㅡㅡa
그럼 부탁드립니다.