
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, There is no such event. You may enumerate available datasources and replace SelectCommand before running a report: report.Load(...); foreach (Base c in report.AllObjects) { Â Â if (c is TableDataSource) Â Â { Â Â Â Â TableDataSource tabl…
-
Sorry, the desired report structure is very unclear to me. I'm afraid I cannot help you with this.
-
Hello, FR always use physical image dimensions when measuring images, so it's not possible now.
-
Hello, RichObject does not support html tags, it is a richtext (rtf) formatting. You need to select the word in the rich editor and click "B" button.
-
Hello, Set up your total to count invisible rows ("Include invisible rows" option in the total editor).
-
Ok, I will try to add this feature.
-
Hello, It's not possible. Use custom format instead, or use "FormatNumber" function.
-
Hello, When you attach own Open/Save events, there is no ability to call the default "save" method. You have to write own code to do this.
-
Hello, There are two ways to combine bold®ular text in one text object: TextObject with html tags, and RichObject. Please send me the example of pdf with content cut off.
-
Hello, Subreport is not necessary in your case. You may use as many nested data bands as needed. http://fast-report.com/documentation/UserM...ilrelations.htm
-
It's quite complex task: - you have to create own format based on FastReport.Format.FormatBase class; - register it in the AssemblyInitializer class (see AssemblyInitializer.cs file); - modify the TypeConverters\FormatConverter.cs file (ConvertFr…
-
report.ConvertNulls = false
-
Hello, It's not possible without modifying the source code of FastReport.Net.
-
Hello, Put the following text in the Text object: MyTable.MyColumn] == true ? [MyTable.MyColumn1] : [MyTable.MyColumn2
-
Hello, Use previewControl.AddTab method to add a prepared report as a new tab.
-
Hello, When you register the DataSet with relations, FR automatically registers all the tables and the relations. This is used in the main demo.
-
Hello, You should set e.Data in the CustomOpenDialog and use it in CustomOpenReport, or set e.Data in the CustomSaveDialog and use it in CustomSaveReport. The Data is not shared between CustomOpenDialog and CustomSaveDialog.
-
Try to set TextObject1.Format = new FastReport.Format.NumberFormat();
-
Hello, Try with the latest FR.Net build. If you still have an error, please make a simple demo and send it to tz@fast-report.com.
-
Hello, Right-click the Text object and select "Format...". Then select Number formatting.
-
Hello, 1) Once you create the custom label, you cannot change its properties. You may delete the label and create another one. 2) The only way to print labels across then down is to use databand's columns rather than page columns. To set the g…
-
Hello, Please provide full stack trace.
-
Hello, You probably need to turn off the config file (which is loaded when you create the first instance of a Report). Set FastReport.Config.WebMode = true before you create a Report instance.
-
Hello, Run the following code: FastReport.Utils.Res.LoadLocale(path + "German.frl");
-
Hello, Set object's CanShrink property to true.
-
TotalIncText.Text = "[[Totalcalls] == 0 ? \"\" : SecondsToHHmmss([TotalDuration]/[Totalcalls])]";
-
Hello, You can use IIF function to check for 0. Something like [IIF([Totalcalls] == 0, "", SecondsToHHmmss([TotalDuration]/[Totalcalls]))] -or- [[Totalcalls] == 0 ? "" : SecondsToHHmmss([TotalDuration]/[Totalcalls])]
-
Hello, This event is very rarely used (in fact, I create it to support XPO). So there is no detailed description in the class reference. The calculated column can be created in regular datasource only (which is based on table/query).
-
(report.FindObject("txtReportName") as TextObject).Text = "123";
-
No, you should update your version.