gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
You can call user function in the Page1OnBeforePrint event (in the script) only
-
See modified test project in the attach
-
Attach your current report template (fr3) and prepared report (fp3)
-
See a demo report template for FRDemo in the attach
-
wrote: each pair of memos must be in one band You may use chain of TfrxChild bands
-
Try if (Pos('BnF',)>0) then AR.Visible := true else AR.visible := false;
-
-
-
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