Not Printing Data
Hi
I need to print one record at a time (a contract of a company). The contract must be setup that if a certain value appears in a data field it must be printed else not.
I am not using bands for this. Only shapes with data fields on the shapes.
I need to know how to disable a data field if it is equel to a certain value or even disable a complete shape with data if a specific field contains a certain value.
They change the contracts and I need to make it user defined.
Regards
Petrus
I need to print one record at a time (a contract of a company). The contract must be setup that if a certain value appears in a data field it must be printed else not.
I am not using bands for this. Only shapes with data fields on the shapes.
I need to know how to disable a data field if it is equel to a certain value or even disable a complete shape with data if a specific field contains a certain value.
They change the contracts and I need to make it user defined.
Regards
Petrus
Comments
use if then else block of code and control visible property of the objects
ie
if [tblname."fldname"] = somevalue then objectname.visible := true elses objectname.visible := false;