gpi
gpi
About
- Username
- gpi
- Joined
- Visits
- 556
- Last Active
- Roles
- Members, FR Team
Comments
-
https://forum.fast-report.com/en/uploads/238/PYUESKWUGMSC.png Tell your customer to disable Use local fonts option in the Adobe Acrobat reader settings (Ctrl + K)
-
4. Do you can to get described behavior on the your computer?
-
1. Send your report template (fr3), prepared report (fp3) and result (pdf) to support.com 2. Send Arial.ttf from system where error is appear to support.com 3. What PDF browser, OS was used?
-
1.What version of FR do you use? 2.What version of Delphi do you use? 3.What version of Delphi do you use? 4.Try to test compiled FR Demo https://www.fast-report.com/en/download/public_files/264/ on client computer with client prepared report (fp3)…
-
Group footer needs dataset which allow Prior method. Do you use such dataset? Some datasets are unidirectional (like DBX) and Prior will not works
-
Modify test project from attach to show your behavior and send it to support.com https://forum.fast-report.com/en/uploads/724/AST50SV8NMVN.zip
-
use fastreport version that comes with delphi You can't to do what you want without FR's script, but script doesn't available in the free FR Embarcadero edition
-
CR to FR converter needs Crystal Reports from VS 2005 installed
-
Add a stretched memo with [Report.DrillState.Text] on the stretched group header and run report
-
Try to analize Report.DrillState.Strings in the script
-
Add TfrxHeader for each data band and set order in the TfrxHeader.OnBeforePrint event. You may call user's function to change dataset order in the application code
-
rotate image inside applicationand then use it in the TfrxPictureView. Prepared report will be exported to PDF like preview
-
Try to use if (<Line> = 16) or (<Line> = 24) then Engine.NewPage in the band's OnBeforePrint event in the script
-
Try to test latest FR 6.9.6
-
Works OK for me. FR 6.9.6 Delphi 10.2 Try to use expression property
-
Try to recompile all FR's packages by recompile.exe
-
https://forum.fast-report.com/en/uploads/915/W0E7DT6K2194.zip See a sample in the attach
-
Try to use latest FR 5.6.18
-
Use frxPDFExport1.Title := 'Your Title';
-
use var i: integer; c: TObject; m: TfrxMemoView; begin for i := 0 to frxReport1.AllObjects.Count - 1 do begin c := frxReport1.AllObjects.Items[i]; if c is TfrxMemoView then begin m := TfrxMemoView(c); if …
-
0) Can you point me to the documentation of the DBDataset events, that describes their typical applications? TfrxDBDataset events doesn't used typically 2) If it is normal for OnNext to get fired multiple times per record, should I be using a diffe…
-
Use frxReport1.LoadFromFile('test.fr3'); See a demo in the FR's \Demos\Main folder
-
You may create Replace user's function (see a sample in the C:\Program Files (x86)\FastReports\FastReport Studio\Examples\VisualC++\UserFunctionExample folder) or use Pos function and Delete, Insert procedures
-
Try to change TeeChart version by FR's recompile.exe Run "recompile.exe" and do these steps: 1. Select Delphi version 2. Select FR version 3. Select TeeChart version 4. Press "Browse" button and select path to TeeChart's .dcu fi…
-
Use FormatDateTime('dd/dd/yyyy', date)] in the FR 6 VCL
-
Try to set TfrxReport.EngineOptions.ConvertNulls to False
-
I have some problems still with this as the preview isn't "full screen" like. Got the box itself the preview is in and the dark area outside of it. Like to some way make it take up the whole box. Try to use standard FR's preview (without T…
-
Send simple demo project to support.com
-
Set frxReportWristband.StoreinDFM = True, load or create report teplate with Page1 report page and use <CODE>procedure TForm1.D1Click(Sender: TObject); begin frxDesigner.OpenDir := 'C:\TEMP'; frxDesigner.SaveDir …
-
Use uses frxPreview; procedure TForm1.frxReport1Preview(Sender: TObject); begin //PreviewForm(frxReport1.PreviewForm).Left := 400; frxReport1.PreviewForm.Left := 100; frxReport1.PreviewForm.Top := 100; frxReport1.PreviewForm.Width := 800; frxRe…