
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
This is a very old setting (since May 4th).
-
Hello, Use the following code to filter service properties exposed by XPO: Config.ReportSettings.FilterBusinessObjectProperties += new FilterPropertiesEventHandler(ReportSettings_FilterBusinessObjectProperties); Â Â Â Â Â Â Â Â void ReportSett…
-
Hello, Set FastReport.Utils.Config.PreviewSettings.Text = "My Title"; before running the report.
-
Hello, set FastReport.Utils.Config.DesignerSettings.ShowInTaskbar = true; before running the designer.
-
Probably the colorName is null or empty in this situation, so the next code line (new ColorConverter().ConvertFromInvariantString(colorName)) fails. Just check for this situation and use some default color: if (String.IsNullOrEmpty(colorName)) T…
-
These values are defined in the PDFExport class. You cannot replace it when using a standard preview window (unless you have the source code).
-
Hello, 1) Probably you have to update the reference to FastReport.dll, to compile the demo. 2) The designer is WinForms only, you cannot use it in a browser. There is a report viewer, you can read about its use in the developer's manual, "Workin…
-
Hello, You can use conditional highlight: http://fast-report.com/documentation/UserM...cthighlight.htm Set appropriate condition, and uncheck the "Visible" flag. Also set the following properties: TextObject.CanShrink = true Band.CanShrink…
-
Hello, Do you want to change the Label's text? If so, use the following code: FastReport.Utils.Res.Set("Export,Misc,Creator", "Creator:"); FastReport.Utils.Res.Set("Export,Misc,Producer", "Producer:");
-
Hello, There is no global settings for formatting. You can change the current thread's globals, but this is not a good idea.
-
Hello, There are two errors in your report: 1) The relation is incorrect, you have to switch Parent and Child tables (parent = dtColorDetail, child = dtAllCallDetailReport). 2) Error in the script: Â Â Â Â private void txtCallDate_BeforePri…
-
Hello, You need to turn FastReport's webmode on. To do this, call the following line before you create an instance of Report: FastReport.Utils.Config.WebMode = true;
-
I get your mail. The problem is that your PageHeader band is too long. It works well when all the data fit on one page. When you move subreport11 down, the pageHeader band (together with all its child bands) gets too long for one page, and page bre…
-
- It's not possible to split FastReport into several parts to make the report core independent from WindowsForms. - You confuse DevExpress with DevComponents (FastReport.Bars.dll). - We don't have plans to support Mono.
-
Here is what I did in the demo.exe: - start the report designer; - make a new report; - select "Data/Add Data Source..." menu item; - add new Firebird connection to the demo database which comes with firebird (initial catalog="C:\Program Files…
-
I didn't get anything from you, could you resend it please?
-
Hello, Please send me your report file (.frx) to tz@fast-report.com.
-
Hello, You can't use highlight in this case. - set up the relation between two tables (main table and color table). Join them by Call_Type column; - write the script (TextObject.BeforePrint). Something like this: string colorName = (String…
-
Hello, I was not able to reproduce this. Do you have a step-by-step instructions?
-
Hello, Probably it's your printer driver, because it works with my printer. FastReport uses standard PrintDocument class to print, so I can't fix anything related to printing.
-
Hello, Don't you forget to add quotes? [dtAllCallDetailReport.Call_Description] == "Outgoing"
-
You can attach own handlers to the progress events, to write to a log: Config.ReportSettings.StartProgress += new EventHandler(ReportSettings_StartProgress); Config.ReportSettings.Progress += new ProgressEventHandler(ReportSettings_Progress); Conf…
-
Hello, I'd like to look at the report file (.frx). Could you send it to my email (tz@fast-report.com)?
-
No, the problem is not connected with last edited .frx file. I think it's a problem with recorded forms/toolwindows position.
-
This is a specific request (closing the preview after print), so I don't think it will be useful for others.
-
Try to delete FastReport config file: C:\Users\user_name\AppData\Local\FastReport\FastReport.config
-
Hello, You have to use own preview window (see Demos\C#\CustomPreview sample).
-
Hello, foreach (FastReport.Base c in report.AllObjects) { // do something with c... }
-
Hello, What you mean by "it doesn't work"? Do you get any error? Please provide full stack trace.
-
Hello, There is no way to make printing faster. If you using the demo version, the printout is slower because of "DEMO VERSION" semitransparent label.