AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, I did not finished it yet. It will be available in the 1.1 version which will be released in the next month.
-
Hello, param1 is query parameter. The report.SetParameterValue method works with *report* parameters. Since there is no easy way to pass a value directly to the query parameter, you need to use the report parameter, which can be easily set via co…
-
Relation will be enabled automatically if its datasources (parent and child) are enabled.
-
Hello, FastReport does not save database items that are not enabled. When you call RegisterData method, all DataSet items are added into the dictionary, but they are all disabled. You have to enable necessary items via the "Report|Choose Report D…
-
Sorry, this fix was wrong. Relations do not work correctly now, so I have to rollback changes. In order to print the first data row in the report title, you need to use script. ReportTitle's BeforePrint event: Â Â Â Â private void ReportTitle1…
-
Hello, Sorry for delay, but this fix requires a lot of work. I will inform you in this post when we done.
-
Hello, Our pdf export is unicode-only now. We will try to solve this issue in the next version (I can't tell you the time frame).
-
Hello, You have to disconnect the main group's Data band first, before adding a nested group:       // create the main group       GroupHeaderBand mainGroup = new GroupHeaderBand();       mainGroup.Height = Units.Millimeters *…
-
I see now, thanks. The fixed version will be available later today.
-
Please delete the FastReport.Net configuration file. It can be found here: C:\Documents and Settings\user_name\Local Settings\Application Data\FastReport\FastReport.config If you're running Vista, location is here: C:\Users\user_name\Local …
-
Hello, Please provide full stack trace.
-
How did you copy the TableObject? Clipboard operations are disabled for database objects.
-
I have tried to reproduce this error, but it works for me. I've used the following sql: exec MyProc @prm, '1.1.2008' where @prm is set to DataType = VarChar DefaultValue = ab (without quotes)
-
You have to set up the DefaultValue property of the parameter. This property is used when you trying to view table data. The Expression property can't be calculated when you in the report designer.
-
We have bought the DevComponents DotNetBar license which includes toolbars, menu, docking and ribbon. I'm working on integrating all this stuff into FastReport.Net. I can't say now when it will be ready.
-
It's in the preview window, when you press the "Print" button, the print dialog appears. Press "More options" button to see more options.
-
Did you tested it on a new FR.Net version? It works well for me. Please describe steps how to reproduce this error.
-
Hello, Which data provider do you use? It's a MS SQL or something else?
-
You may set the larger paper size and print it using the "Split big pages" mode (you may choose it in the "Print" dialog). In this case, you don't need to change FastReport sources
-
Ok, I will add the designer application to the FR.Net package.
-
Hello, Most likely, you have a really big band which doesn't fit on a page. In this case, it will be moved to the next page. Try to make it smaller, or enable its "CanBreak" property. In the patter case, the band will be splitted across pages.
-
Hello, 1) we don't have speciall app - the report designer. Typically you don't need this. In most cases, your application provide a data for a report, and this data will not be available in a stand-alone designer. So it's better to call the desi…
-
Hello, We don't have special demo for FastReport.Net Basic edition. You can learn about its limitation here: http://www.fast-report.com/en/products/fas...ure-matrix.html In short: you have no run-time report designer, no scripting, limited…
-
Try to use converter utility which can be downloaded here: http://www.fast-report.com/pbc_download/files/fr3tofrx.exe
-
Hello, The problem is fixed, wait for 1.0.191 build.
-
Hello, I had changed the Data\DataSourceBase.cs file.
-
Sorry, I cannot fix this one. It will print the first record on the last page. Consider using a variable that is initialized in the data band's BeforePrint event and printed in the page footer.
-
The fixed version will be available in 4 hours.
-
Hello, All databand-related objects should be printed on data bands. In all other cases their state may be indeterminated. To fix your case, I need to add some "hack-type" code in FastReport.
-
The "Chart" property of the MSChartObject contains a reference to the Microsoft Chart control, so you can use its documentation to learn more about its properties.