gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 561
- Last Active
- Roles
- Members, FR Team
Comments
-
You may use TfrxDetailData band for query results output
-
wrote: I can have a string of delimited data.... GUIDS in this case. So for example 5 of them. I want to create 5 master bands. Each band represents a stored procedure call / Query ... "Call MyProc(GUIDString)" You may set TfrxMasterDat…
-
See ODAC's Third-party folder to find DB engine for FR
-
wrote: nfortunatelly if "Create caption" is selected and we drag dataset and some fields, the created captions are spread at wrong positions and at loose at the page... improves on such are also very wellcome. Even better would be a more automatic…
-
See a demo project in the attach wrote: Another thing that might help: The unit "frxDBXComponents" is not added to the uses clause automatically, one has to do that by oneself. Might be the case for the other internal DB Components as well. …
-
If you want to create a band - select dataset and required fields
-
Select all fields in the tree with Ctrl key and drop it on the TfrxReportPage
-
Try to select correct EscModel for TfrxDotMatrixExport
-
TfrxRichView(frxReport1.FindObject('Rich1')).RichEdit.Font.Size := 16;
-
Try to set visibility of TFrxReportPage in the main procedure of the script
-
See a Programmer's manual "Creating a report form from code" chapter
-
Try to use dialog window with TfrxDBLookupCombobox
-
USe TfrxADOQuery.SQL property
-
procedure TForm1.frxDesigner1Show(Sender: TObject); begin   TfrxDesignerForm(frxReport1.Designer).DataTree.SortCB.Checked := True; end;
-
Try to print report with pmScale print mode
-
wrote: But what I want: I do not need the question to save the report, because I save it in the Database. How to disable that? You don't need to disable this close query function TForm1.frxDesigner1SaveReport(Report: TfrxReport; Â Â SaveAs: B…
-
Send your current report template (fr3) and prepared report (fp3) to support@fast-report.com
-
procedure TForm1.frxDesigner1Show(Sender: TObject); begin   TfrxDesignerForm(frxReport1.Designer).DataTree.DataTree.Visible := False;   TfrxDesignerForm(frxReport1.Designer).DataTree.FunctionsTree.Visible := False;   TfrxDesignerForm(frxReport…
-
Sorry, but FR doesn't have such feature at this moment
-
Send a small demo project with error to support@fast-report.com or describe your problem more detally Did you fill TfrxUserDataset OnFirst, OnNext, OnPrior, OnCheckEOF, OnGetValue events?
-
Send a small demo project with error to support@fast-report.com or describe your problem more detally Did you fill TfrxUserDataset OnFirst, OnNext, OnPrior, OnCheckEOF, OnGetValue events?
-
See FR for IBDAC DB engine in the IBDAC Third-party folder and install it
-
Try ((TfrxResources *)frxResources())->LoadFromFile("C:\\Russian.frc"); frxReport1->ShowReport(True);
-
Try to use subreports
-
This bug is not on FR's side. VCL styles doesn't work good with DLL. You can re-produce it even in your project: - create dll with an empty form; - add popup menu with few items; - add image list with few icons; - assign image list to popup m…
-
Create small demo project with error and send it to support@fast-report.com
-
You can add watermark in the TfrxReport.OnEndDoc procedure TForm1.frxReport1EndDoc(Sender: TObject); var p: TfrxReportPage; m: TfrxMemoView; i: integer; begin frxReport1.Preview.Lock; for i := 0 to frxReport1.PreviewPages.Count - 1 do begin p:=TfrxR…
-
Try TfrxMemoView(Sender).FillType := ftGlass; TfrxGlassFill(TfrxMemoView(Sender)).Hatch := True;
-
var i, j: integer;     page : TfrxReportPage; begin     frxReport1.PrepareReport();     j := frxReport1.PreviewPages.Count div 2;     page := TfrxReportPage.Create(nil);     for i := 0 to j - 2 do       begin     …