How to implement variable height in QuickReports

Delphi 7 and QuickReports. Does anyone know how to implement a variable height range width so that the area for the detailed range is dynamically adjusted to best fit the loaded data from the query? Is this possible with QuickReports? If not, do you know of a product that facilitates this?

EDIT

Components Used: TQuickRep, TQRBand, and a specific control that will contain variable-sized content - TQRExpr

EDIT

A key piece of information not included in the response is the purpose of the TQRExprMemo expression, since it does not have an expression property such as TQRExpr. The answer to this is to enclose the expression in {} (for example, "{expression}") and assign it to the Lines property.

Set RemoveBlankLines to True, AutoStretch to True, AutoSize to False.

+4
source share
1 answer

I always use TQRExprMemo . Set AutoSize to True , AutoStretch to True , and IIRC is the property to remove / suppress blank lines. I often used this to create mailing labels, address blocks on letters, etc.

+2
source

All Articles