gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
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
-
Sorry, but FR doesn't have such feature
-
wrote: I wish to wrap also at dashes ("-"). Is this possible? No, you should modify FR's sources only
-
Try to create report variables and assign they with dataset fields
-
Use [Round( / 5)]
-
wrote: In which forum or topic? http://www.xailer.com
-
Does your Branch dataset enabled in the FR (menu Report-Data)? Ask xailer fastreport developers about :SetUserDataset usage