AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Ralf, If you configure your report to use VB.Net script language, you have to write every expression in a report using that language. For example, the Data band in your report has the following filter expression: [tbl_projekte_angebot_liste.Ange…
-
You can find it in the top-right corner of FR Demo main window [img]style_emoticons/<#EMO_DIR#>/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> tz at fast-report.com[/img]
-
Hello Ralf, Could you send me your report file and an example of code where you call the report? wrote: There is also sometimes some other "silly" behaviour of the designer: - When pressing the "Pre-View" Button, the Designer closes comple…
-
Hello, It happens because you have selected the "VB.Net" language for your report. The error will be fixed in tomorrow's FR.Net build.
-
Hello, You can check current FR.Net version.
-
Sure we will have a version with source code. Btw I'm improving the business objects data source right now. It will be able to: - load the data when running a report (now it loads data when you register it); - load the data to datasources you act…
-
It's a C# code.
-
Hello, The correct syntax is: TableCell cell = report1.FindObject("Cell1") as TableCell; cell.Text = "...";
-
Daniel, FastReport has a base class for custom datasources; it's not hard to implement own one. For example, custom ds that supports the DataView object has about 2kb source code. All I need is to document it better.
-
But I don't think the custom datasource will solve your problem. FR.Net uses a "random" data access model (it differs from FR VCL that uses First/Next/Prior methods to navigate); it requires that all data must be loaded into datasource. It is neede…
-
Hello, What about business objects support that works already? You can supply any IEnumerable-type object to the FastReport.
-
Hello, Other export formats are in development now. We plan to support all formats found in the VCL version.
-
Hello, How would you like to use LINQ with FR.Net? Could you describe a scenario?
-
Hello, Try out the last FastReport.Net version. I have fixed this bug some days ago.
-
Hello, I don't know much about data services. I think you can use something like datatable to get a data from data service and supply that table to a report.
-
Ralf, I do the same and it works well. I use the "Simple list" demo report here. - add a new parameter "MyParam" in the Data Dictionary, DataType is Int32 - double-click the Data band, switch to "Filter" tab, set filter expression to [Employee…
-
Please clarify. You have a parameter called "artikel_filter" which "Expression" property is set to "[artikel_filter]"?
-
Hello, Strange, it works well for me. Probably you need to set the parameter's DataType property. Could you prepare a test application and send it to my email?
-
Hello, We plan to add it later, right after release.
-
Hello, Doubleclick the DataBand and you will see all that you need
-
1) By default the ReportTitle is printed on top. Change the page's property "TitleBeforeHeader" if you want to change it. 2) Set the PageHeader's "PrintOn" property to "FirstPage". Add a Child band to PageHeader and set its "PrintOn" property to "O…
-
If you want to print something on all pages, use the PageHeader/PageFooter bands.
-
Hello, That's right because ReportTitle band is printed only once on the first report page. So this property has no meaning for this band, it cannot force the ReportTitle to be printed on last page, for example.
-
I have fixed it, it was an image resolution problem. The fixed version will be available for download in this midnight.
-
Could you send me the logo? I cannot reproduce this. Also tell me which system do you use, the screen resolution and dpi setting (normal/large fonts). To load a report, use the report.Load(filename).
-
Hello, 1) there is no templates support in the wizard. However you can make a template and save it to a file. Next time when you need to create a new report, open this file, modify it and save new report with different name. 2) I've tried to pla…
-
Hello, - Yes, you should create the layout by using bands and objects like Text, Picture, and so on. - I've fixed the wizard. I've also switched on the ShowInTaskbar option for the designer.
-
Hello, Not sure if I understand you correctly. You have to create the report layout by yourself. You also may use the "Standard report wizard" (select File|New...|Standard report wizard") to create the report.
-
Hello, Since FastReport.Net uses WinAPI calls, it won't run on mono.
-
Hello, Since the FastReport.Net is demo now, you need to perform some steps to use it in the VS2005. - in the VS2005, right-click the Toolbox and select "Choose Items..."; - click "Browse..." button and select the "FastReport.dll" file; - clos…