gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
wrote: Is it possible to sort data during run-time? Yes. If your dataset support such feature
-
See a demo in attach
-
Try GroupHeader->Condition="frxDBDataset1.\"company\""; and add Memo2->SetBounds(200, 0, 100, 20);
-
See report template in attach
-
Select cell, place shape on cell
-
Did you try to use TfrxPreview.PreviewPages.ModifyPage?
-
Or TfrxXMLExport
-
wrote: very hard to find solution on the web...... Yes. Very hard http://www.fast-report.com/en/faq/faq.php?ID=401#3834
-
Use for example: procedure Band4OnBeforePrint(Sender: TfrxComponent); begin     case ( mod 3) of       1: Engine.CurX := 0;       2: Engine.CurX := -10;       0: Engine.CurX := 50;     end;              …
-
No, you can't
-
Try to recompile all FR's packages with recompile.exe
-
No, you can load picture from file or db field only
-
Try to check for last record in OnNext event
-
No test project - no comments Did you try to detrermine last record in TfrxDataSet.OnNext event?
-
Try to use TfrxPageFooter
-
I think network printer doesn't support DMP print Try to assign your printer with LPT port
-
Set TfrxDotMatrixExport.OEMConvert property
-
Atthac here your FR print dialog window
-
See attach
-
What printer do you use?
-
There are no such feature in FR If your databande is simle, you may print each paragraph on separate detail band. Set TfrxDetailData.RowCount to YourParagraphCount
-
Also you can use TfrxMemoView.OnPreviewClick event (you may set TfrxMemoViiew.Printale to False) See attach
-
Check TfrxDesigner.Restrictions
-
Use TfrxMemoView(frxReport1.FindObject('frxtalla'+inttostr(i))).Visible := False;
-
Use for example     frxReport1.Preview := nil;     frxReport1.LoadFromFile('1.fr3');     frxReport1.PrepareReport();     frxReport1.LoadFromFile('2.fr3');     frxReport1.PrepareReport(False);     frxReport1.LoadFromFile…
-
Use aggregate functions on ReportSummary band
-
wrote: Can I have an answer please ? You can edit one preview page only
-
Try procedure Header1OnBeforePrint(Sender: TfrxComponent); begin   //if engine.freespace < (fr01cm * 20)                                                      //then engine.newpage; end; …
-
Line 1508 is       r := Rect(Round(AbsLeft * ScaleX) - 20, Round(AbsTop * ScaleY) - 20,                 Round((AbsLeft + Width) * ScaleX + 20),                 Round((AbsTop + Height) * ScaleY + 20)); ful…
-
wrote: However it seems a bit strange that you set the bin on the pages and not in the printer options :S. You can set different bins for different TfrxReportPage, so printer options is not good solution