gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
Attach your report template (fr3). Your screenshot is useless
-
Download AnyDAC addons from AnyDAC's download page
-
Use second way. You can set visibility of report's page in the script
-
wrote: I have a canned report that a client wants an extra page added to. I still need to provide the original format to existing clients. Describe what you have and what you want to get more detally
-
Set Subreport.PrintOnParent = true
-
FR Embarcadero edition doesn't support's internal datasets For FR Trial you can found packages for FireDAC in the LibD20 folder
-
Try to add TfrxMemoView with frame to Child band, set TfrxMemoView.StretchMode to smMaxHeight, TfrxMemoView.Width = Child.Width
-
Open your RTF in the MS WordPad, save it by WordPad and store saved RTF in the BLOB field
-
Set DM2->PDFExport3->FileName too
-
Create custom function. See a Developer's manual for more info
-
[] used as expression delimiters in the TfrxMemoView, TfrxRichView <> used as variables, fields delimiters in the script and expressions
-
Use in the Child's OnBeforePrint event: Child1.Visible := not Totals.Dataset.Eof;
-
Use Format function procedure txCreditLimitOnBeforePrint(Sender: TfrxComponent); begin if = 1 then txCreditLimit.Text := 'Credit Limit: ' + Format('%2.2m', []) else txCreditLimit.Text := ''; end;
-
Try to add empty child band to masterdata band
-
Use double pass report. See User's manual "6.11 Printing a group sum in the group header" chapter
-
Use TfrxOverlay band
-
Attach your report template (fr3)
-
I don't found any attachment I think no other way, but array usage not a hard problem
-
It seems you use FR Embarcadero Edition which doesn't supports dialog controls and internal datasets. Use FR Trial for converting
-
Attach report template (fr3) for FRDemo with such behavior
-
Yes, it's possible. Calculate in the TfrxCrossView.OnPrintCell event, print custom total in the TfrxCrossView.OnPrintCell event. Use TfrxCrossView.IsGrandTotalRow to determine grand total row
-
Try #include "frxClass.hpp" #include "frxPreview.hpp" #include "frxChart.hpp" #include "frxBarcode.hpp" #include "frxBarcode2D.hpp"
-
It seems FR PDF Export doesn't have such feature. Create support ticket
-
I have get "English" numbers when try to open your fp3 file Try to use Arial Unicode MS font instead of tahoma font Also try to rename tahoma font to Tahoma
-
Check FR's packages in the run-time packages list. Is fs20.bpl included?
-
Use latest FR 4.15.13 and set MAPI option for TfrxMailExport
-
Attach your report template (fr3) and saved peview pages (fp3) here
-
Modify frxExportPDF.pas: Write(pdf, 'stream'#13#10); // 'stream'#10 is also valid if FProtection then CryptStream(XObjectStream, pdf, FEncKey, XObjectId) else pdf.CopyFrom(XObjectStream, 0); Write(pdf, #13#10'endstream'#13#10); Inc(FPicTotalSize, …
-
wrote: for XML, Excel load file without error, but data is present up to 256th column smile.gif, rest is empty. XML and XLSX works OK. See attach
-
See attach. All works OK for me