Answers to frequently asked questions during the purchase or use of the report generator FastReport.Net (1)

FastReport .Net is a full-featured report solution for Windows Forms, ASP.NET, MVC and .NET Core. It can be used in Microsoft Visual Studio 2005-2019. Support .Net Framework 2.0-4.x, .NET Core 3.0 and above.

In the new version of FastReport .NET 2021.1, we have implemented support for .NET 5. Added a new barcode-Deutsce Post Leitcode. The algorithm for converting RTF into report objects has been significantly improved. And also added new functions for converting numbers. Welcome to download and experience. (Click the button below to download)

[Huidu.com] Download the latest version of FastReport.NET v2021.1

Fastreport.NET online purchase price is lower, exclusive 15% off! Hurry up and add to the shopping list!

1. Can the report generator be added to the products for which my customers can modify the report? Or every customer must buy their own license

You can add the designer FastReport.NET to the end user without additional permission. This means that you can only add the report generator to the product, without the source code and not in the development environment.

2. What is the difference between single license, team license and site license? Please fully explain

You can order 1 single license (per developer only). 2 team licenses (applicable to a four-person developer team. Includes Build Server license). 3 site licenses (for an unlimited number of workplaces with one geographic address in the organization. Build Server license included).

3. How much is FastReport.Net subscription renewal? What do I get from it?

You can renew your subscription in the control panel. Subscription includes technical support and product updates. Its price is 1/3 of the full price per year. After the subscription expires, you have two options:-Renew. This will enable you to get technical support and product updates. -Continue to use FastReport.Net. In this case, you will not be able to use the latest product updates and get technical support. Price: FastReport.Net Basic Edition 1-year subscription-single-$30, team-$90 website-$449 FastReport.Net Win form 1-year subscription-single-$90, team-$300 website-$899 FastReport. Net Win Form + Web Form 1 one-year subscription-single-$ 109, team-$ 360 website-$ 1049 FastReport.Net professional one-year subscription-single-$ 150, team-$ 480 website-$ 1799

4. I have purchased FastReport product. I should get the permission information within 48 hours, but I did not receive the email. Also in "My Downloads", I cannot see any information about the new product.

Write support. An error may have occurred while registering a new account

5. Unfortunately, we want to order updates, so there is no such option in our panel.

We will place an update order to you. Write support.

6. Cannot add FastReport.Net component on the Form of Visual Studio

You should add FastReport.Editor.dll, FastReport.VSDesign.dll, FastReport.Web and FastReport.dll to the GAC. To do this, open the Visual Studio tools folder (C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\Shortcuts), open Developer Command Prompt for..., and write gacutil -i "reference path + name .dll" (gacutil -i "Program Files \ FastReports \ FastReport.Net \ Framework 2.0 \ FastReport.dll"). Learn more about GAC here- https: //msdn.microsoft.com/zh-CN/library/dkkx7f79(v=vs.110)
.aspx

After adding FR control in Visual Studio Toolbox: Right-click Toolbox->Choose Items->Select FastReport.dll from GAC, then press OK.

7. How to calculate the size of the object whose properties are set to dynamically change (automatic width, growable, shrinkable)?

If you call the .Height object property (Text1.Height), the result will be the height of the object in the report template. After the report is created, the height will change.

You should use the CalcHeight (Text1.CalcHeight()) method to determine the height of the objects in the prepared report. To calculate the width, you also need to use the CalcWidth method.

8. Error message received when compiling the project: The type or namespace name "FastReport" could not be found (are you missing the using directive or assembly reference?)

Make sure that the project contains links to the required libraries (FastReport.dll, FastReport.Web.dll). Check the .Net Framework version used by the project and the connected library.

9. After installing the full version, FastReport.Net reports will continue to be restricted to be generated.

You should delete the trial version. After that, check the directories C:\Windows\assembly and C:\Windows\Microsoft.NET\assembly\GAC_MSIL. It cannot contain the FastReport.Net library. If included-delete it.
After uninstalling, the complete FastReport.Net version should be installed.

10. How to use the code to send the report in PDF format via email?

To do this, use the following code snippet:
Use this snippet for it:
Report report = new Report();
report.Load(...);
report.RegisterData(...);
report.Prepare();

PDFExport pdfExport = new PDFExport();
EmailExport export = new EmailExport();

// set up Account properties...
export.Account.Host = "...";
export.Account.Address = "...";

// set up email properties...
export.Address = "...";
export.Subject = "...";
export.MessageBody = "...";

// send email
export.Export = pdfExport;
export.SendEmail(report);
11. How to delete the "Data" tab for the end user?
Add the "EnvironmentSettings" control to your form.
Then add the following line before calling report.Design():

EnvironmentSettings1.DesignerSettings.Restrictions.DontCreateData = True;
EnvironmentSettings1.DesignerSettings.Restrictions.DontEditData = True;
If you use DesignerControl, you should use the following command:
designerControl1.Restrictions.DontCreateData = true;
designerControl1.Restrictions.DontEditData = true; In
this way, the data control Will be disabled.
Want more? [Huidu.com] You can read [FastReport 2020 latest resource inventory] to find the tutorial resources you need.

Guess you like

Origin blog.51cto.com/14874181/2573172