how to print ppMemo1 (ppmemo1 = ppdbMemo1 + ppdbMemo2)
?Hi,
i've ppdbmemo1 and ppdbmemo2
i've ppMemo1 also!
i need to print ppMemo1 where ppmemo1 = ppdbMemo1 + ppdbMemo2
How can i do it?
tks
--- posted by geoForum on http://delphi.newswhat.com
i've ppdbmemo1 and ppdbmemo2
i've ppMemo1 also!
i need to print ppMemo1 where ppmemo1 = ppdbMemo1 + ppdbMemo2
How can i do it?
tks
--- posted by geoForum on http://delphi.newswhat.com
This discussion has been closed.
Comments
Instead of using two DBMemo objects, simply add the text of the two db
fields to the TppMemo object manually in the DetailBand.BeforePrint event.
Something like the following...
ppMemo1.Lines.Text := ppReport.DataPipeline['myField1] +
ppReport.DataPipeline['myField2'];
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
it's ok
tks a lot.
--- posted by geoForum on http://delphi.newswhat.com