weirdo12
weirdo12
About
- Username
- weirdo12
- Joined
- Visits
- 16
- Last Active
- Roles
- Members
Comments
-
Create a text object place holder on the report named ReportTitle. Set it's Text property to 'Report Title'. In your app, use TfrxReport.FindObject to locate ReportTitle and then cast and set the objects Text property if it has one. You'll have to c…
-
du.64 wrote: » HI, No I use Paradox files and Query. FireDAC has a cool macro feature that would have helped you. You can write a query like: SELECT col_1, col_2, col_3 FROM &table_name where table_name is a macro whose value …
-
du.64 wrote: » Hi, I want to print a list of different data on a Report. Threre is 6 differents databases but fields have the same name. So, I intend to use just one Report... Are you using FireDAC datasets?
-
gpi wrote: » [code] PaperInfo: array[0..PAPERCOUNT - 1] of TPaperInfo = ( Using 0 seems to set PrintOnSheet to the PaperSize, PaperHeight and PaperWidth property from the report. The values of TPaperInfo[0] might be the default values for …
-
gpi wrote: » Â Â PaperInfo: array[0..PAPERCOUNT - 1] of TPaperInfo = ( Thanks again. Found the source file - frxLazPrinters.inc for anyone looking at this thread. The pages are defined in increments of 0.1 mm. The Letter (or 8.5" x 11"…
-
gpi wrote: » Try frxReport1.PrintOptions.PrintOnSheet := 1; Thank you so much. That worked perfectly. Is there a reference for what values to use with PrintOnSheet?