gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 578
- Last Active
- Roles
- Members, FR Team
Comments
-
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
-
Create a small demo project with error and send it to support@fast-report.com
-
Send report template (fr3) and prepared report (fp3) to support@fast-report.com
-
FR FMX don't have Android and iOS. FR FMX supports Windows and OSX only
-
Send a small demo project with error to support@fast-report.com
-
Sorry, but FR doesn't have such feature
-
Do you run command line with "Run as administrator" option?
-
Try varname1 := TfrxBarCode2DView(frxReport1.FindObject('QRCodeSeriNo'));         if varname1 <> nil then           varname1.BarCode.Text := RightStr(myBarcodeNo, 10);
-
Did you set DetailData1.RowCount to 1 in the FR designer?
-
Check stored images format. Try to use BMP or JPG
-
Use additional line series
-
Use TfrxMemoView(report.FindObject('Memo1')).color:=; in the script or TfrxMemoView(report.FindObject('Memo1')).color:=report.Calc(''); in the Delphi
-
Use MainReport.PreviewPages.ModifyPage(p, o); to apply changes
-
Use stretched TfrxMemoView with heightt for 1 row
-
Send your report template (fr3) to support@fast-report.com
-
Try to set full permissions for C:\Program Files (x86)\FastReport 5 VCL Standard\LibD23 folder
-
You may assign TfrxPictureView.OnBeforePrint with script procedure only Use TfrxReport.OnBeforePrint event for Delphi's code