gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
FR VCL doesn't have such feature. You may use multicolumn band only
-
See here: https://www.fast-report.com/public_download...oups_header.htm
-
TOTALPAGES# is a macro variable. It replaced in the prepared report, so formatting will not works. Use two-pass report and TOTALPAGES report variable
-
Attach your report template (fr3)
-
MS Word - Insert symbol - Ctrl+C FR - Ctrl+V
-
Set TfrxMemoView.ParagraphGap
-
See HKEY_CURRENT_USER\Software\Fast Reports\Form5.TfrxDesignerForm
-
TfrxDesignerForm(Sender).Workspace.FreeBandsPlacement := False;
-
Use memo2 = price + value
-
See a sample for old TdxDBLookupTreeView in the attach
-
procedure Edit1OnKeyPress(Sender: TfrxComponent; var Key: Char); begin   if not (Key in ['0'..'9', #8]) then Key := #0;                            end;
-
wrote: And That project use FastReport and I made all report objects run-time. Add TfrxReport object to your project, compile project, remove TfrxReport
-
FR doesn't have such feature. Try to use PDF printer which have such feature
-
FR 4.15.13 works OK on Windows 10 Build 15063 (previous Windows 10 build works OK too)
-
This component doesn't included in the Fast Report, this is third-party component and it should be installed too You may download it here: http://www.fast-report.com/en/forum/?p=/discussion/11634
-
Install third-party TfrxAdvPictureView component
-
Try procedure TTemplateReporter.Preview; begin   ReAssignDatasets;   //Reload your report template again here   PrepareReport(False);   ShowPreparedReport; end;
-
This is a bug. Create support ticket or send your message to support@fast-report.com Use TfrxMemoView.AllowHTMLTags = True as workaround
-
It seems FR doesn't allow to change WordWrap for TfrxRichView.RichEdit
-
Set TfrxDesigner.Standalone to False
-
Place cross-tab on the TfrxReportSummary band
-
Check TfrxReport.Print result. If TfrxReport.Print= False - Cancel button pressed
-
Attach your report template (fr3) and prepared report (fp3)
-
This code should works frxReport1.LoadFromFile('repA1.fr3'); frxReport1.PrepareReport; for i := 2 to count - 1 do begin frxReport1.LoadFromFile('repBi.fr3'); frxReport1.PrepareReport(false); frxReport1.LoadFromFile('repAi.fr3'); frxReport1.PrepareR…
-
wrote: Do you know that the PDF export will work on a recent Windows 10? Latest FR 4.15.13 (3 years old) export to PDF without errors on the Windows 10
-
Try to assign TfrxRichView.RichEdit.Lines with your RTF text
-
Attach your generated report template (fr3) here Try GroupHeaderBand.Condition := DMGenericFastReport.frxDBDataset.Name+'."'+AReportParameters.Fields.Name+'"'; too
-
FR 4.10.5 is very old version. Try to use latest FR 4.15.13