Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

one DBText include two DataField

edited May 2007 in General
Hi...
I'm using Report Builder V 7.02.
How to create one DBText that can include two DataField?

Best Regards,

Imam Wardany

--- posted by geoForum on http://delphi.newswhat.com

Comments

  • edited May 2007
    Hi Imam,

    If you are trying to combine two datafields into a single component, you can
    try using a TppVariable and the OnCalc event to do so. For instance if you
    have two fields: "FirstName" and "LastName", you could place the following
    code inside the OnCalc event of a TppVariable.

    Value := Report.DataPipeline['FirstName'] + ' ' +
    Report.DataPipeline['LastName'];

    You can also use the address squeeze method shown in demo 31 located in the
    \RBuilder\Demos\1. Reports\... directory.

    --
    Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com

    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
This discussion has been closed.