one DBText include two DataField
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
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
This discussion has been closed.
Comments
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
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com