Default Avatar

PeterHer007

PeterHer007

About

Username
PeterHer007
Joined
Visits
45
Last Active
Roles
Members

Comments

  • Hi Paul, Thank you for your reply, but above images are taken from the Report Designer, not Delphi IDE.
  • Thanks for your reply. I know I am able to: frxReportPage.Bin := X, but I am not sure what Integer value to use. Maybe I am overlooking something but no Bin property here. I have version: 6.9.11 https://forum.fast-report.com/en/uploads/109/ZIHGABSD4…
  • I am affraid there is no Bin propery.
  • Hi, Thanks for your reply. Is it possible to save the output to file like in the dialog in code? It seems that 'frxReport.SaveToFile(ReportFileName);' is something different then selecting 'save to file' in the printing dialog. If I use 'save to fil…
  • Problem has been solved. I had a repeated frxReport.Preview := frxPreview; I thing this was causing the problem.
  • The problem is more like this: My Report is shown correctly, but when I resize the form, the report is empty. Try to resize the Report when resizing the form, this will show you an empty Report on screen.
  • Below the solution: frxReport.PrintOptions.PrintMode := pmScale; frxReport.PrintOptions.PrintOnSheet := 186 // right index of TFormInfo1 (in my case A4 fanfold 210 mm x 11 2/3 in) If frxReport.PrepareReport  Then frxReport.ShowPreparedReport;
  • Below the solution: frxReport.PrintOptions.PrintMode := pmScale; frxReport.PrintOptions.PrintOnSheet := 186 // right index of TFormInfo1 (in my case A4 fanfold 210 mm x 11 2/3 in) If frxReport.PrepareReport  Then frxReport.ShowPreparedReport;
  • Hi, My mistake, I thought that I would receive an e-mail if my ticket was answered, but checking the ticket on the web I saw that my answer was answered successfully. Thank you.
  • Thank you for your reply. I will give it a try. Any idea which hidden folders I need to check? I have now checked: C:\Program Files (x86)\FastReport 6 VCL Enterprise C:\Windows\System32 C:\Users\Public\Documents\Embarcadero\Studio\20.0\Bpl C:\Users\…
  • Same here. Created a ticket on 11 nov 2020, nothing heard after.
  • It is already going wrong within the Preview screen. Procedure is: Preview is on screen Press the printer button In Printer dialog press the Settings button Properties of the printer are: https://forum.fast-report.com/en/uploads/594/WNNYZZQCCM6I.png…
  • I am not able to set the correct paper size in FR Designer. The needed format is not available. I tried below code to get all paper sizes and set frxReportPage.PaperSize to the right index, but without any success. // GetPaperInfo // --------------…
  • Unfortunately this doesn't help: frxReportPage.PaperSize  := DMPAPER_USER; frxReportPage.PaperHeight := 25.4; // in 0.1 mm frxReportPage.PaperWidth := 220; // in 0.1 mm frxReport_Label.PrepareReport(); frxReport_Label.ShowReport; Back to the orrigi…
  • I already solved the problem by: Code in FastReport: procedure Memo_Text1DB_PlantsOnAfterData(Sender: TfrxComponent); begin  If Memo_Text1DB_Plants.Text = ''   Then Engine.CurY := Engine.CurY - Memo_Text1DB_Plants.Height;                           …
  • Hi, Thank you for your reply. If I do it like this: Code in FastReport: procedure ChildOfBand_MasterData1OnBeforePrint(Sender: TfrxComponent); begin  ChildOfBand_MasterData1.Visible := Memo_Text1DB_Plants.Text <> ''; end; https://forum.fast-…
  • Hi, I already tried this, unfortunately without any effect. A4 paper is defined in Delphi, but A4 fanfold isn't. I also used TFormInfo1 to get all available paper sizes and set the TfrxReportPage.PaperSize to the right integer, but also no effect.