
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, It's not possible now. You may need the FR.Net Pro version to customize the source code.
-
Hello, You need to implement the report.LoadBaseReport event. FReport.LoadBaseReport += new CustomLoadEventHandler(FReport_LoadBaseReport); private void FReport_LoadBaseReport(object sender, CustomLoadEventArgs e) { Â Â // e.FileName contains …
-
Hello, Use the Footer band attached to a detail data. See example in the demo, "General/Master-Detail" report. The DataFooter1 band can be used here to show totals by category.
-
Professional version includes source code of FastReport.dll library. Other two libraries (FastReport.Editor - syntax editor for report script; FastReport.Bars - toolbars, menu, docking) are third-party commercial products, we are not allowed to dist…
-
Hello, Which connection do you use to connect to Oracle? Is it the Ole DB connection, or do you use Oracle add-in (from FRNetConnections.zip package)?
-
Hello, Sorry, we have no idea how to fix it now. We write the export/print output to Page.Response, but this has no effect in modal window with target = self.
-
Hello, Do you use FR on shared hosting, in medium-trust environment?
-
Yes, it's possible. I did a simple test: - I've opened "Interactive Reports|Hyperlinks, Bookmarks.frx" report and splitted it to two reports, "1.frx" (contains the first page) and "2.frx" (contains the second page) - in the application code, I'…
-
Hello, 1) Sorry, I don't understand your question. FastReport.Net can't be compared with FastReport3 - they have different architecture. If you want to print master-detail report, you must have two data bands (master and detail). 2) It's impos…
-
Sorry, but looks like it's not a FR-related problem.
-
Hello, It's not possible now. Try to use another (empty) databand instead of data header (so your report will contain two data bands on the same level).
-
No, it's by design. You can print totals only in footer bands (data footer, group footer, page footer, column footer, report summary).
-
Hello, You have to copy/paste the objects from the last added page, there is no way to do this automatically. - click the band, press Ctrl+A. This will select all object on the band; - press Ctrl+C - go new page and press Ctrl+V.
-
1) Use the following code:       // get the data source by its name       DataSourceBase rowData = Report.GetDataSource("Products");       // init the data source       rowData.Init();             // now enumer…
-
The build is ready, you can download it now.
-
Hello, There is no way to set the timeout now. I will add this functionality in the next build (it will be ready in 12 hours).
-
Hello, 1,2) wait for the next build and you will able to do this: Config.DesignerSettings.DesignerLoaded += new EventHandler(DesignerSettings_DesignerLoaded); Config.DesignerSettings.Restrictions.DontEditData = true; void DesignerSettings_Desi…
-
Sorry, no such option in our obfuscator. Please tell me which version of Dotfuscator do you use? I saw in internet some discussions about the similar issue and they tell that Dotfuscator 4.3 w/patch should work well: http://www.aspose.com/commu…
-
Please wait - I will play with obfuscation settings - maybe I'll find the option that will produce Dotfuscator-friendly FastReport.dll
-
See http://www.fast-report.com/en/buy/order-FASTREPORT.NET.html
-
Hello, Looks like it's not possible with Dotfuscator Community Edition (I'm not sure if it will work in Dotfuscator Std/Pro). Well, the only way for you (if you decide to use FastReport.Net) is to buy FastReport.Net Pro edition with source code. …
-
Do you need to replace the standard "Add New Item" dialog with your own?
-
Hello, do report.GetDataSource("your_ds").Enabled = true; after RegisterData call.
-
Probably your Shape object is in front of the data. Right-click it and select "Send to back" menu item.
-
What exactly it doesn't show?
-
Hello, You can do it in the BeforePrint event handler: Text1.Formats.Clear(); FastReport.Format.CustomFormat format = new FastReport.Format.CustomFormat(); format.Format = "HHmm"; Text1.Formats.Add(format);
-
Hello, 1) Do you mean "Text" object? Just put a text object on the Data band and set databand's source to your datasource. 2) You can do it in your application's code. report1.SetParameterValue("MyParam", 10) will create a parameter with "My…
-
As I said I'm not familiar with Dotfuscator. There must be an option to exclude some dlls from obfuscation.