IngoFR
IngoFR
About
- Username
- IngoFR
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
Hans wrote: » In our C# program we added this line: pdfExportEmail.EmbeddingFonts = true; That solved our Apple problem. This works! Thank you very much.
-
if you know the name of your printer the following code works just fine: ReportFast.Prepare(); // print report to pdf printer ReportFast.PrintSettings.Printer = "PDFCreator"; ReportFast.PrintSettings.ShowDialog = false; ReportFast.Print();
-
serifelsen wrote: » StartNewPage property can help You Thank you for the hint but StartNewPage is only a workaround for the first occurence. If you have more data it can happen on the following pages. I also tried doublepass but without su…
-
shanewiso wrote: » Hi I am tring to set the Font to Bold of a TextObject in the Fast Reports Script section, thought this would work but it returns a ReadOnly exception when running the report: if(Blah < = 0) { TextObject.Font.Style = Font…