gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 591
- Last Active
- Roles
- Members, FR Team
Comments
-
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     …
-
Use TfrxGlassFill(TfrxMemoView(Sender)).Hatch := True;
-
Try to modify frxExportDOCX.pas: w := Round(m.Width * 360000 / fr1cm{m.MMWidth * MMFactor}); //change this line h := Round(m.Height * 360000 / fr1cm{m.MMHeight * MMFactor}); //change this line id := 'picId' + IntToStr(FPicNum); pic := 'image' + IntT…
-
TeeChart doesn't included in the Delphi Starter, so you can't to use TeeChart in the FR or need to install TeeChart
-
You may include TfrxDesigner in the your application
-
Assign your USB port with LPT1 or try to use generic text driver if it available for your printer
-
Create small demo project with problem based on standart Delphi's components and send it to support@fast-report.com
-
Check TDataModule.ClassGroup property. It should be Vcl.Controls.TControl