
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, This object is called Matrix now. http://fast-report.com/documentation/UserM...trixreports.htm
-
Hello, You may use the following code: Â Â Â Â Â Â Â Â protected void Button1_Click(object sender, EventArgs e) Â Â Â Â Â Â Â Â { Â Â Â Â Â Â Â Â Â Â Â Â FastReport.Utils.Config.WebMode = true; Â Â Â Â Â Â Â Â Â Â Â Â using (Report report = ne…
-
Hi and thank you! I will include this in the next daily build.
-
The reason is that Datapkt12 band has CanBreak option. So the small part of this databand is actually printed on the same page together with the data header. You have to set CanBreak to false for that band if you use KeepWithData mechanism.
-
Please send the report file to tz@fast-report.com.
-
It does work for me, could you make a simple test case?
-
Hello, Databand's header has KeepWithData property. Set it to true.
-
Sorry there is no way to show something except report.FileName in the designer's caption.
-
Hello, The only solution is to put these two objects in a separate child band.
-
You probably do this too late, after the report is loaded: FastReport.Utils.RegisteredObjects.AddConnection(typeof(SQLiteDataConnection)); Try to move this code to the Program.cs file, for example: Â Â Â Â static void Main() Â Â Â Â { Â Â Â Â Â…
-
You need to pass a value from your program to the FastReport parameter. See programmer's manual: "Working with Windows.Forms/Passing a value to a report parameter" Then you may use that parameter in a filter condition.
-
Sorry, I don't understand what is the problem. The following way (from readme.txt) must solve it completely: 3) register the dll programmatically - add the "FastReport.SQLite.dll" reference to your project; - execute the following code once at the…
-
Hello, As you can see, there are two copies of the same dll (FastReport.SQLite.dll). One is included into your project and the second is used in FastReport. You may do it easier: FastReport.Data.DataConnectionBase ReportConnection = (FastReport…
-
Hello, Please read the manual: http://fast-report.com/documentation/UserM...tafiltering.htm
-
Hello, mySeries.Name="test"; this code has no effect. You should use the following code if you want to change series name: mySeries.SeriesSettings.Name="test"; How do you set the filter? The following code should work: mySeries.Filter…
-
You may add a form with such combobox to your application and use it to request parameters before running a report.
-
Hello, There is no such ActiveX, we have no plans to develop it.
-
Hello, FastReport uses standard WinForms controls. Such behavior is not supported.
-
Hello, I didn't receive the report file yet. Could you please resend it?
-
Hello, There is no CheckedListBox.GetItemChecked method that takes two arguments. http://msdn.microsoft.com/en-us/library/sy...=VS.100%29.aspx
-
Hello, Could you send me the report file? tz@fast-report.com In the demo app, changing SelectCommand property has no effect because the data is from xml file.
-
Looks like your detail datasource has large amount of rows. Do the following: - run the designer; - go to the Data window; - select your detail datasource; - press "View Data..." button on the toolbar; - at the bottom of the window, you will se…
-
Hello, In this case, the table alias is the table name. If you need to register one table only, you may use the following code: report.RegisterData(DS1.Tables["yor_table"], "Adress");
-
Hello, Try set the master databand's PrintIfDetailEmpty property to true.
-
Sorry, it's complex enough, I cannot help you with this. Currently we support only pdf printing way. The second way (via browser) will be available soon as well.
-
Hello, I'm not sure if I understand your question. Please provide more details.
-
Hello, Set Config.DesignerSettings.Text property to "Report: ". This will give you "Report: FileName" caption. You also need to set FileName to the name of your report.
-
As far as I know, you can't use OLE DB in 64bit system, so this is not only FR-related issue.
-
This property has no effect if you use TableObject. To hide duplicates in this case, you need to use the script. See the attached report, you may run it in the Demo.exe.
-
In a web app, there are following ways to print a report: - export to pdf and print using Acrobat Reader. The most accurate way, but requires Acrobat Reader installed on the client PC. - export to html, open the result in a new browser window, the…