AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
Hello, FastReport.dll assembly must be copied to /bin folder too.
-
Hello, Please look at the Demos\C#\ExportToPDF demo project.
-
Sorry, we have no such plans.
-
Hello, Set the band's CanGrow property to true.
-
Hello, It's not supported.
-
Hello, Could you send me the report file?
-
Hello, You should add FastReport.dll to your references list.
-
Hello, You should register a connection in code, as described in the readme.txt file: 3) register the dll programmatically - add the "FastReport.MySQL.dll" reference to your project; - execute the following code once at the application start…
-
Hello, Objects with ProcessAt != Default are handled in a special way. You cannot change them from BeforePrint handler.
-
Hello, No, it's not possible.
-
Hello, Sure: [FormatMask([Employees.FirstName], "000-0000")]
-
Here is the code: report1.Load("C:\\test.frx"); (report1.FindObject("Data1") as DataBand).Sort.Add(new Sort("[Product.Cost]"));
-
Hello, Do you mean do this in code? Look at Demos\C#\ReportFromCode demo.
-
Try with the latest build. If it still does not work I need a test project. These settings work well for me when I test demo reports.
-
Change the TotalLopend total settings: Print on the band = Page footer Reset after print = false
-
Hello, Try to add System.Windows.Forms.DataVisualization.dll to the project reference list. You will probably need to install Microsoft Chart Control first: http://www.microsoft.com/en-us/download/de...s.aspx?id=14422
-
This report is inherited, could you also send the base report FR_EXTERN.frx?
-
Hello, Please send your report file (.frx).
-
Hello, Yes, it is possible. Store reports in .frx files. Register data before running a report. In winforms, use the code - Report report = new Report(); report.Load("frxfile"); report.RegisterData(your_data); report.Show(); In webforms, u…
-
Please save the prepared report in design-time and send .fpx file to me (tz@fast-report.com).
-
Hello, Both design and run time preview should be identical. Could you make a simple project that demonstrates the problem?
-
Hello, In the total's settings you indicate ">0" which is not valid expression. Should be probably "[RaportNir.Valoare] > 0".
-
Hello, You have the same problem: the databand is not connected to a datasource. You may use the following code to connect it: (rptNir.FindObject("Data1") as DataBand).DataSource = rptNir.GetDataSource("name_of_datasource");
-
Hello, 2D barcodes will be available in FR VCL 5.
-
Hello, You should fill the dataset before running a report.
-
Hello, It's not possible to export to stream with HTML export because it produces many files (.css, pictures, .html for each page). You may use MHT export instead, it produces single file and can be exported to a stream.
-
Hello, Do not use page header to print data. Use group header instead. If you want the header on each page, set the header's "Repeat on Every Page" option.
-
Hello, Organization chart is not supported. You may print hierarchic lists using hierarchic data band: http://www.fast-report.com/documentation/U...nthierarchy.htm