
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
There is no way to combine cells in this case. Redesign your report - replace the table with several Text objects.
-
Hello, If you use Text object to print data, set its Duplicates property to "Merge".
-
Hello, After you show the form, the report is disposed because of - using (Report report = new Report()). Either do form.ShowDialog() instead of form.Show(), or do not dispose the report until you close the preview form.
-
Hello, MS SQL connection type can open mdf files as well. You should indicate a server name and choose the mdf file.
-
Hello, Could you send the report file (.frx) and the prepared report (.fpx) to tz@fast-report.com?
-
Hello, Use the code: Â Â Â Â Â Â report.Load("report.frx"); Â Â Â Â Â Â report.Prepare(); Â Â Â Â Â Â HTMLExport export = new HTMLExport(); Â Â Â Â Â Â export.PageRange = PageRange.PageNumbers; Â Â Â Â Â Â export.PageNumbers = "1"; Â Â Â Â Â Â…
-
exec MyProc @param1 @param2 Then define parameters in the next step of the wizard.
-
Hello, You don't need to create relations between business objects. The relation editor works with table datasources only. Just put two data bands (master-detail), connect the master to Category, the detail to Category.Products.
-
Hello, FastReport uses MS Chart Control to print charts. This control requires .Net Framework 3.5 sp1. If your report does not contain charts you may just copy this dll in your .exe folder and use 2.0 framework.
-
Hello, You may decrease the memory usage if you turn on the "Use file cache" option in the Report|Options menu.
-
Hello, It's not possible, but you may use another way: http://www.fast-report.com/documentation/U...gnodatatext.htm
-
Hello, I never used php. I think you may call own webservice which is written in asp.net, from your php code. That service may run the report, export it o pdf, and return the result.
-
Hello, 1) use Matrix object: http://fast-report.com/documentation/UserM...trixreports.htm also look at the "Matrix" category in Demo.exe 2) use Table object in its dynamic mode. You can read about it here: http://fast-report.com/documenta…
-
Hello, You may insert the function code into the report script and use it in a report objects such as TextObject.
-
Hello, I've checked the latest build, the font size is ok. Which version do you use?
-
Hello, Looks like your databand is not connected to a datasource. You may do it in code: ... rpt.GetDataSource("Person").Enabled = true; (rpt.FindObject("Data1") as DataBand).DataSource = rpt.GetDataSource("Person"); ...
-
Hello, You may create a new TextObject in code, like this: TextObject newObject = new TextObject(); newObject.Bounds = new RectangleF(0, 0, 30 * Units.Millimeters, 10 * Units.Millimeters); newObject.Text = "new text"; newObject.Parent = Dat…
-
Hello, You may do the following: - add a footer to your data band (or, use a group footer if the databand has a group); - set the footer's RepeatOnEveryPage property to true; - put the text object with "Continued" text on the footer; - set th…
-
I need to add some flags to do this. I'll let you know when it will be ready.
-
Please read this topic: http://www.fast-report.com/en/forum/?p=/discussion/4935
-
Hello, I will add the ReportPrinted event in the next daily build (tomorrow). You will be able to use it as follows: using FastReport.Utils; Config.ReportSettings.ReportPrinted += new EventHandler(Report_Printed);
-
Hello, Not sure if I understood you correctly. Do you want to add a custom button to the preview window's toolbar?
-
Hello, You need to indicate which lines you want in the border: Text1.Border.Lines = BorderLines.Bottom; -or- Text1.Border.Lines = BorderLines.Top | BorderLines.Bottom;
-
Hello, No, it's not possible.
-
Hello, FR gets all rows from the datasource, then prepares the report. Nothing can be improved here.
-
Hello, I have tried to reproduce this bug in a demo report, but I can't. Could you make a simple (compilable) demo for me and send it to tz@fast-report.com?
-
Hello, Report is considered printed when you press the OK button in the print dialog. Use the following code if you want to show the "Print" dialog, then print: report.Load(...); if (report.Prepare()) { Â Â PrinterSettings printerSettings = nu…