gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
What edition of FR do you use? FR Embarcadero Edition and FR Basic edition doesn't support script
-
What edition of FR do you use? FR Embarcadero Edition and FR Basic edition doesn't support script
-
See here: http://www.fast-report.com/en/blog/index.p...on_en&id=26
-
wrote: I've tried to work around this by using a Header with a bottom frame, left and right frames in the band, and Footer with a top frame. But the footer only gets output after all the data, and we need that on each page. Try to set bottom …
-
Did you install XE2 Update 3?
-
See Programmer's manual "1.12 Creating a report form from code" chapter
-
wrote: DeleteDC is missing from the end of the procedure. This procedure fixed. Use latest FR 4.12.1
-
See PrintTable demo
-
Try to set {[dataset.AssignedDate]} memo's Align property to baLeft
-
Fast Report Embarcadero Edition doesn't support export to Excel: http://www.fast-report.com/en/products/rep...ure-matrix.html
-
QR support will be added in FR5
-
procedure TForm1.frxReport1BeforePrint(c: TfrxReportComponent); var   Cross: TfrxCrossView;   i, j: Integer; begin   if c.Name = 'Cross1' then   if c is TfrxCrossView then   begin     Cross := TfrxCrossView(c);     for i := 1 to 1…
-
There are no such solution
-
procedure TForm1.frxReport1ClickObject(Sender: TfrxView;   Button: TMouseButton; Shift: TShiftState; var Modified: Boolean); var MyClipboardFormat: Word;     MyHandle: Cardinal;     MyPalette: HPalette; begin     if Sender is TfrxPict…
-
Try TfrxChartView(frxReport1.FindObject('Chart1')).SeriesData.Items[0].YSource := 'frxDBDataset1."field1"';
-
Try to use user function
-
wrote: 3.6 Aggregate functions In most cases, group reports need to display some summary result information (such as: ???total of a group,??? ???number of group elements,??? etc). FastReport provides these aggregate functions this purpose. With…
-
Use additional TfrxMasterData band with empty memos and set TfrxMasterData.RowCount property to complete invoice to 10 or 20 lines
-
Use IIF function
-
You can use tag only wrote: 2.4 HTML-tags in the ???Text??? object Yes, this object does understand some simple HTML tags. Tags can be located inside the text of an object. Tags are disabled by default; to enable them, either select the ???A…
-
Try to change paper size in main procedure of script
-
Hello, You should write DB engine. See Developer's manual for more info
-
Unzip file from attach, copy to your LibDx folder and recompile FR TeeChart packages
-
I don't found any reference for GetBookmarkPage in FR's sources May be you want to use GetAnchorPage?
-
wrote: and return back in normal mode to print different pages it remains (in Current mode option )printing only one page ????? What code do you use for return back?
-
If you have a question you can create support ticket: http://www.fast-report.com/en/support/ticket_list.php
-
Try var Pict : TfrxPictureView;     Image: TImage; begin   Pict := frxreport1.FindComponent('Picture1') as TfrxPictureView;   Image := TImage.Create(nil);   Image.Canvas.Pen.Color := clBlack;   Image.Canvas.Brush.Color := clRed;  …
-
Yes, you can
-
wrote: or maybe is already there in latest build?? Yes, but why you don't try this before post message?
-
This is code from my project: In Delphi (I use FIBPlus dataset) procedure TMainForm.ChangeLimitZaborSort; var fields :TStringList;     ordering: array of Boolean; begin     fields:=TStringList.Create;     fields.Add('NOMER');     …