AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
FastReport does not handle such option (btw, how to do this? the PrintDocument class that is used in the FR does not have such option). It just prints to the printer you have selected, page-by-page.
-
If you have a test case for me, it would be helpful. I could take a look at it and try to solve the problem. wrote: I have put a one row table to a databand and I want that the cells of the table grow whenever one cell has so much data that it…
-
Does your "units" table contains autoincrement fields?
-
FastReport just executes the SQL that you wrote and fills the table with result data; it does not use any constraints. Do you able to write that query in the Visual Studio? If so, how can I reproduce it?
-
Hello, Try this way: TableDataSource ds = Report.GetDataSource("MyTable") as TableDataSource; if (ds != null) Â Â ds.SelectCommand = (string)Report.GetParameterValue("MyParam"); You can do it inside the Report.StartReport event handler (ei…
-
Hello, Use the EnvironmentSettings component, it can be added from VisualStudio Toolbox. In the DatabaseLogin event you may pass own connection string to the connection object that is defined in the report. private void report1_DatabaseLogin(ob…
-
Bosko wrote: » I did this in that DatabaseLogin event: report1.Dictionary.Connections[0].ConnectionString = "Data Source=.\SQLEXPRESS;Initial Catalog=myDatabase;Integrated Security=False;Persist Security Info=True;User ID=myUsername;Password=myPas…
-
Hello, There is no polish translation yet; you may do it. Download the localizer utility here: http://www.fast-report.com/pbc_download/fi...etLocalizer.msi To start with translation, press "Add New localization" button. I hope you will f…
-
Every way I've tried to do this it works for me. You have tried to do this several ways and get the error. Just a mysticism! If you able to prepare a test application and send it to me, it would be nice.
-
See the attached report. It's a modified "Complex (Master-detail with group)" sample from the Demo.exe. Run it in the Demo.exe.
-
1) I was unable to reproduce it in the Demo program. Do you able to do this, or maybe you have a small test case for me? Remember that if you use the calculated column, you have to set correctly its DataType property. And (it's a limitation of .Net…
-
wrote: I didn't get error with my application. I figured out that passing parameter from my application will work, and there is no problem. I was getting this error in designer! That's the side effect I was talking about. You call report.…
-
Bosko wrote: » Another question regarding Date Type in report. How can I set the display format of a Date Column from my DataSource? For example: I would like it to be: 12.10.2008., database is returning 12.10.2008 00:00:00. How can I do …
-
Bosko wrote: » And every time I try to preview report, I am getting this error in messages window, and it won't compile: @DocumentID: Error CS1525: Invalid expression term '[' @DocumentID: Error CS1002: ; expected @DocumentID: Error CS1002: ;…
-
Bosko wrote: » Everything is stored in a database. I have a table where I store company data. Invoice is stored in two tables: "InvoiceHead" and "InvoiceData". InvoiceHead holds something like the "title" of the invoice (clients data, invoice n…
-
Bosko wrote: » I am trying at this moment to create an invoice report. To make it look as it should I must have theese "lines": - My company name and data - Client's company name and data - List of articles - Totals of articles prices I …
-
Hello, Don't judge so harshly. As you can see, the FastReport.Net is in beta stage now and the only documentation available is a class reference. At this time we working on other documents: - user manual; - programmer manual. Ok, let's answe…
-
1) I've uploaded the fixed version. 2) that's why you have to check the "Apply to all pages". I will rename its caption to make it more clear.
-
Hello, Try the following: TextObject myText = report1.FindObject("MyText") as TextObject; myText.Text = "myvalue";
-
Hello, The fixed version will be available later today.
-
Hello, We have to finish the documentation. After that we will release the product. It will be ready in the October. At this time we have no conversion utility that converts old .fr3 files. We will create such utility right after release. Unfort…
-
You can define a parameter in your report. To do this: - go "Data" window. If it is not visible, you can view it in the "Data|Show Data Window" menu; - click "Actions" button in the "Data" window. Select "New Parameter" item; - go "Properties" wi…
-
Hello, To filter data in a report, doubleclick the "Data" band and switch to "Filter" tab. You can write any valid .Net expression here. For example, in the "Simple List" report you can write the following expression to display employees which n…
-
Hello, We have almost finished the asp.net part, it will be available soon.
-
Hello, You may register the dataset using the Report.RegisterData method: Â Â Â Â Â Â FReport = new Report(); Â Â Â Â Â Â FReport.Load(...); Â Â Â Â Â Â FDataSet = new DataSet(); Â Â Â Â Â Â FDataSet.ReadXml("nwind.xml"); Â Â Â Â Â Â FReport.Re…
-
Hello, I have no such errors, I was able to drag Report on a form and call the report designer. Tested in VS2005 and VC#Express2008.
-
Hello, yes, for example you may declare a method in your application that will concatenate two string values: public static string Concat(string value1, string value2) { Â Â return value1 + " " + value2; } and use it in a TextObject: [D…
-
Hello, Fixed. The new version is available for download.
-
Regarding your qestion about documentation: it is in progress now. We hope to finish it in a month.
-
Hello, You can use custom functions declared in your main app. To do this: - declare a function in your app; it must be "public static"; - go report designer, "Report|Options..." menu, select "Script" and add the main app's name to the "Referen…