
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, Please look at the Demos\C#\CustomOpenSaveDialogs. This demo uses DataSet that stores report files.
-
Hello, We will try to fix this.
-
Hello, Call the following code before generating a report: using FastReport.Utils; Config.ReportSettings.ShowProgress = false;
-
Hello, You have to install FW 3.5 sp1 in order to use charts (in this case you may just copy the System.Windows.Forms.DataVisualization.dll file together with your .exe). There is no way to use it in FW2.0 only, because the chart library uses som…
-
Hello, csv export is not intended to keep the exact layout, it contains data only. Use export to Excel if the layout is important.
-
Hello, It's in the FastReport/Forms/PrinterSetupForm.cs. The NumericUpDown control has Maximum property set to 100. I'll fix this in the next daily build.
-
Hello, PageFooter is always printed at the very bottom of a page. You may use the ColumnFooter band or DataFooter band (in the latter case, you need to set its option RepeatOnEveryPage to true).
-
Hello, Use the following code: Report report = new Report(); report.Load(...); report.RegisterData(...); report.PrintSettings.ShowDialog = false; report.Print();
-
Sorry, I cannot provide the complete guide on how to make this report. Here are some (basic) suggestions: - use totals that never reset (running totals). http://fast-report.com/documentation/UserM...nningtotals.htm - or, use manual calculation us…
-
Hello, Please send the report file (.frx) to tz@fast-report.com.
-
Hello, Could you send the prepared report file (.fpx, save from preview) to tz@fast-report.com?
-
Hello, Sorry, it's not possible.
-
Hello, The only way to debug is: save a report as a code (File/Save as, file type = C# file), add it to your solution and debug.
-
You need to replace % with Mod: ToWords(100.245, "dinar", "dinars") + "AND " + ToWords(Round(100.245 * 1000) Mod 1000, "fil", "fils")
-
Hello, This bug will be fixed in the next daily build (it will be available in 24 hours).
-
Hello, Turn off RightToLeft property for that object.
-
Hello, Use the following code: ReportPage page1 = report.Pages[0] as ReportPage; page1.PaperWidth = ... (size in millimeters) page1.PaperHeight = ... (size in millimeters) just set necessary sizes.
-
You should upgrade your version of FR.Net to the latest daily build.
-
ToWords(100.245, "dinar", "dinars") + "AND " + ToWords(Round(100.245 * 1000) % 1000, "fil", "fils")
-
Hello, ToWords(100.245, "dinar", "dinars") + (Round(100.245 * 1000) % 1000).ToString() + " fils"
-
Hello, You should not display the data from a datasource in the page header/footer, if the same datasource is used in a data band. After printing all rows of the databand, the datasource is in EOF state, that's why you see empty/zero value in the…
-
Hello, You may register the DataTable (or any other datasource that you use in the DataGridView) in a report, then print this datasource. See the demo.exe, the "Table/Print DataTable" report. wrote: DataSourceName MUST be be equal to the ty…
-
Hello, Yes it is possible. See the attached report example (you can run it in the Demo.exe). This report uses automatic data filtering: http://fast-report.com/documentation/UserM...rhowitworks.htm
-
Hello, You can use the following expression: ToWords(100.24, "dollar", "dollars") + (Round(100.24 * 100) % 100).ToString() + " cents" will give you "One hundred dollars 24 cents".
-
Hello, You can do the following in your code, before running a report: (report.FindObject("Text1") as TextObject).Visible = false;