
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, You have to register the connector using the code: - add the "FastReport.Firebird.dll" reference to your project; - execute the following code once at the application start: FastReport.Utils.RegisteredObjects.AddConnection(typeof(Fire…
-
FastReport does not contain such control. You have to write the filter expression manually. Consider using built-in dialogs to allow the user to choose some options before running a report (see "Dialogs" category in the demo.exe).
-
ps: did you noticed I'm using DOUBLE QUOTES? [Table.Item_Name] Like "*gfg*" --> correct [Table.Item_Name] Like '*gfg*' --> error
-
Here is the working report, you can run it in the demo.exe program.
-
Do you need to filter strings that contain "gfg" inside? According to MSDN, you have to use the following pattern: [Table.Item_Name] Like "*gfg*"
-
upd: sorry, my VB is not good - there is Like operator in it. This should work: [Table.Item_Name] Like "%gfg%"
-
Once again. The filter is an expression written in c# or vb.net (you choose the language in the Report|Options... menu). The filter IS NOT a SQL expression or something like that. There is no "Like" operator in C# or VB.Net. You cannot use it in …
-
The filter can be any VALID expression (either in C# or VB.Net - depending on language you have selected in the report options). Please read about expressions here: http://fast-report.com/documentation/UserM...expressions.htm
-
Hello, Sorry, I don't familiar with Devxpress filter control and cannot suggest you how to use it with FastReport.
-
Hello, You may use report parameter to pass the selected value before running a report: report.SetParameterValue("selectedValue", your_selected_value) in the report, you need to filter the datasource. To do this, double-click the data band …
-
Hello, You may declare a private variable in the script: private int myVariable; in the data band's BeforePrint event you may initialize it with some value: private void Data1_BeforePrint(object sender, EventArgs e) { myVariable = ((In…
-
It can be set in the header's descriptor (its Totals property).
-
Hello, You may change either the TemplateCell properties, or change the matrix cells by using matrix[columnIndex, rowIndex]. It is the same. TemplateCell is just a reference to a cell in the matrix. 1) you create descriptors 2) you call Build…
-
Hello, Yes, it's possible. using DevComponents.DotNetBar; ButtonItem customButton = new ButtonItem(); customButton.Text = "my button"; customButton.Click += new EventHandler(customButton_Click); previewControl1.ToolBar.Items.Add(custom…
-
Hello, CF is not supported (and will not be supported in future).
-
If you want report title after the page header, select the Page and set its TitleBeforeHeader property to false. You also may use the data band which is not connected to data (it will print one row then).
-
Hello, Don't place the Matrix on the page header or it child. When the large matrix forms a new page, the page header is printed on a new page, and the new matrix is printed again and again. It's by design behavior which you should keep in mind.
-
Hello, Please describe your task in detail. Do you want to pass some data from your application to the report, and print it in a footer? to pass the data: report1.SetParameterValue("myParam", 10); report1.Show(); to print the data, put th…
-
Yes, that's correct. Either enable the sort in both groups, or disable both and set the sort in the databand.
-
Hello, Use the "GrowToBottom" property: http://fast-report.com/documentation/UserM...rowtobottom.htm
-
Define this method in your Page class.
-
You have two options: 1) band.BeforePrint += new EventHandler(your_method); where your_method is defined in your code. 2) add the code to the report Script: (I've skipped line endings in the script text) report.ScriptText = "using System…
-
Hello, just put this in the Text object: TotalCalls] / [TotalDuration
-
Hello, The FastReport.Dock.dll assembly was used in the first release (v1.0) and was replaced with FastReport.Bars.dll in v1.1+. Please download the latest version.
-
Hello, In this report, set the sort order to Ascending in both group headers.
-
Hello, When you set the password, FastReport embeds all fonts used in a report, into the pdf file. It's a limitation of Acrobat.
-
Yes, the Padding is measured in screen pixels. When you use the Windows "Font Dialog" and select 8pt, you'll get 8.25pt - it's a .Net issue, you can see it anywhere in the VS2008 IDE. I can't fix that.
-
I need an example that I can run and test. Could you prepare a simple app and send it to tz@fast-report.com?
-
Please tell me the steps - how can I reproduce the error.
-
I'm afraid there is no chance, for these both improvements. The existing matrix design does not allow this.