AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Please provide more info...
-
Set export.OpenAfterExport to false. I will fix this later.
-
Wait for FR Studio 4.7, it will able to convert to .frx. We plan to release it soon.
-
I mean uses ..., ..., frxSaveFRX; in Delphi.
-
Hello, This ability will be added in FR Studio 4.7.
-
You should change the descriptor, not the cell. See my code here: http://www.fast-report.com/en/forum/?p=/discussion/4952
-
Something like this: Â Â Â Â Â Â FReport = new Report(); Â Â Â Â Â Â ReportPage page = new ReportPage(); Â Â Â Â Â Â page.Name = "Page1"; Â Â Â Â Â Â FReport.Pages.Add(page); Â Â Â Â Â Â RegisterData(); Â Â Â Â Â Â Â Â Â Â Â Â page.ReportTitle = …
-
Hello, HTML export output can't be saved to a stream because it may contain several files (.html file per each report page + image files).
-
Hello, PDF export is not ready yet; it will be available in the near future.
-
Use "\r\n" sequence instead of "\n" character.
-
Hello, You should use XMLExport class instead of ExportBase.
-
Hello, I've fixed it; the fixed version will be available in monday.
-
Yes.
-
Hello, That's right, your query should return two separate columns (year and quarter). Another way is to create two matrix columns and use expressions, for example: [Table1.SalesDate].Year [Table1.SalesDate].Month
-
Hello, You cannot use "Line" variable in Table/Matrix objects.
-
Hello, FastReport.Net can be used with Delphi Prism (which is actually an add-in language for Visual Studio 2008). We don't support VCL.NET which is used in Delphi 8/2005/2006/2007.
-
It should, as long as one Report component is used to build/export one report. The only thing you need to do is to set Config.WebMode property to true.
-
Hello, You can use the Report component (instead of WebReport) and call its Export method. It's described in the Programmer's Manual: - prepare a report using the Prepare method; - create an instance of export filter and set up its properties…
-
Hello, We have almost finished PDF export. It will be available in the near time, then we will add it to WebReport component. And yes, we will finish it in January.
-
Hello, It's not possible now (you have to create own preview as described in the programmer's manual). I will add this feature in the further builds. I will let you know when it will be ready.
-
Please clarify: - you have a text object, - you change its font size, - now the object must increase/decrease its height according to the font size?
-
Hello, I will try to do this.
-
Hello, FastReport.Net does not support dotmatrix printers. This feature will be added later.
-
Hello, WebReport does not have such button yet. As soon as we finish the PDF export we will add such button.
-
Hello, I've forwarded your question to developer responsible for ASP.Net part.
-
In this case you need to implement MyTableObject inherited from TableObject.
-
Sorry, now it's not possible. Table is tigtly integrated with TableCell.
-
Hello Claus, I forgot to mention that you have to fill the dataset before running a report. This must be done before the "report.Show()" call. In design-time, FR does this automatically, but in run-time you must take care about it.
-
Hello, The documentation is here: http://www.fast-report.com/en/forum/?p=/discussion/4901 The "Select Data Source" dialog allows you to select a data source defined in your project. It seems you don't have it. Here is a quick how-to: - …
-
Hello, There is no such control in FR.Net that can display html. You can do it in two ways: - convert html to RTF and display it using the RichObject; - convert html to picture and display it using PictureObject.