gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 559
- Last Active
- Roles
- Members, FR Team
Comments
-
Use latest version of FR
-
Can I use FireDAC with FastReport VCL 5 Embarcadero Edition? Yes, you can Add TfrxDBDataset to project, assign it with FireDAC dataset, go to FR's designer and enable TfrxDBDataset (menu Report-Data), add TfrxMasterdata band to report template, …
-
wrote: If I compile my applications the compiler uses the PAS files instead of the DCUs which defeats the whole purpose of precompiling FR AFAICT. Units will be compiled one time only. If you will not change FR's pas files - it will not recom…
-
Attach your report template (fr3) and prepared report (fp3) here
-
Try to use latest FR 5.5.11. If error still exists - create small demo project with error and send it to support@fast-report.com
-
Use such script: var   s : String; procedure MasterData2OnAfterPrint(Sender: TfrxComponent); begin   if Engine.FinalPass then     s:= s + #13#10 +'AfterPrint ' +Sender.Name+  ' - Page:' + IntToStr(); end; procedure MasterData2OnBeforePrin…
-
Use TfrxPageFooter band
-
Try to use TfrxMasterData with Height = 0 and RowCount =25 Run query in the TfrxMasterData.OnBeforePrint event and show query result on the TfrxDetailData
-
Store data from group footer in the array during first pass and then show this array on the second pass
-
Fixed. Use latest FR
-
wrote: String ImpresoraSeleccionada = "A"; // This line of code is not real, but it is for selecting the desired printer Check printer's name, it may be a typo in the printer's name
-
FR doesn't have such feature. You need to modify FR's sources
-
wrote: I tried using the DBCross-tab object, but i need the table to allways occupie the full page width even if it as to strech the columns It seems you will need a complex calculations during report's preparing to calculate width of columns…
-
Use Master-Detail-Subdetail datasets Order Master dataset by department field, Detail dataset - unique values of the years values, subdetail - Av values Add TfrxGroupHeader, TfrxMasterData, vertical TfrxHeader and TfrxMasterData Assign horizonta…
-
All these things you can do in the Delphi's code In the script you can call user function to force printing in black/white from the Delphi's code. Use Report.OnReportPrint event
-
Set TfrxGroupHeader properties and change dataset sort order before preparing of report
-
wrote: Would it be possible to just print the contract page once, as the last page, and then go through inserting the blank pages and using ModifyPage(i * 2 + 1, page); on each blank page with the same cached "page"? Yes, if contract page hav…
-
Users can drag&drop available dataset fields from Data Tree to report page
-
You may use several e-mail adresses delimited by comma
-
wrote: And I have more records, so separate pages is not good idea Separate pages is good idea, just assign TfrxReport.Dataset with Master dataset
-
uses frxPreview; procedure TForm1.frxReport1Preview(Sender: TObject); begin   TfrxPreviewForm(frxReport1.PreviewForm).ExportPopup.Items[0].Visible := False; end;
-
You can resort preview pages after report's preparing var i, j: integer;     page : TfrxReportPage; begin     frxReport1.PrepareReport();     j := frxReport1.PreviewPages.Count div 2;     page := TfrxReportPage.Create(nil);   …
-
FR VCL 6 beta doesn't available at this moment, so, there are no any info about new features and improvements When FR VCL 6 beta will be available - news will be appear on the FR's site
-
Create and attach small demo project to show what you get now
-
Try to set TfrxMasterdata.AllowSplit to True or use TfrxMasterData with chain of TfrxChild bands
-
Will be added in the FR6 VCL. See a samples in the attach Date of release of FR 6 VCL is unknown. During this year (may be) At this moment try to use PDF printer or SynPDF (see FR's Demos\SynPDF folder)
-
Online FR VCL Designer doesn't available
-
See a sample in the attach
-
Try to comment //frxReport1.PrepareReport(false);
-
This is FR VCL forum. See ticket #423809