Anatoly
Anatoly
About
- Username
- Anatoly
- Joined
- Visits
- 245
- Last Active
- Roles
- FR Team
Comments
-
What version of FastReport.Net are you using?
-
Please describe how you set the data for your barcode?
-
PDFExport pdfExport = new PDFExport(); pdfExport.Creator = "CreatorName"; pdfExport.Producer = "ProducerName";
-
You can use: PDFExport pdfExport = new PDFExport(); pdfExport.Creator = "CreatorName"; pdfExport.Producer = "ProducerName";
-
During this time, the file format has not changed and opens in all new MS Offices.
-
Unfortunately, this functionality is not supported.
-
Try using the latest version. This bug has been fixed.
-
What version of FastReport.Net are you using?
-
You can register the dll programmatically in your app: - add the "FastReport.SQLite.dll" reference to your project; - execute the following code once at the application start: FastReport.Utils.RegisteredObjects.AddConnection(typeof(SQLiteD…
-
You need to copy FastReport.Sqlite.dll and specify the path to it in the designer settings. File -> Options... -> Plugins -> Add
-
https://www.fast-report.com/pbc_download/fr3tofrx.exe
-
This is not possible, but you can create a Child Band for Header and display it only on the first page.
-
The current version has word wrap.
-
We have a good video: https://www.youtube.com/watch?v=8TsOQ28maN8
-
Hello! We have a good video about report inheritance: https://www.youtube.com/watch?v=8TsOQ28maN8
-
You can use AfterData event for your band to it. Code for example: namespace FastReport { public class ReportScript { bool firstTime = true; private void Child1_AfterData(object sender, EventArgs e) { if (firstTime) firstTime…
-
Unfortunately, this is a feature of the matrix. We described this in the documentation. We do not recommend using borders, changing the background of bands and etc. with a matrix.
-
TitleCase does not reduce letters, so as not to ruin the text (for example, abbreviations). You can wrap your text first in LoverCase and then use TitleCase. For example: [TitleCase(LowerCase([BarcodeTable.VariantItemExplanation1]))]
-
It looks like you have incorrect data inside the Garanzia.Importo capitale 1
-
Sorry, I can't deal with your problem.
-
Can you send your data? I will check it and try to solve your problem.
-
FastReport.Net Core 2 doesn't currently support MSChart. We currently don't have .Net Core 3 support. Soon we will add support MSChart with Core 2.
-
Make sure that field1 and field2 is numerical type like int32 and not string.
-
You can use FastReport.Export.Text.TextExport in your programm code.
-
You can use Matrix print: In the Preview window press Save -> Print -> Text File/Matrix Printer...
-
Each expression must be in brackets. Try the following expression: [[fieldA ] + " " + [fieldB]]
-
The problem was reproduced. I will inform programmers about it. As a workaround, you can create your own function and use it. In the script: bool MyIsNull(object n) { if (n == null) return true; else return false; } In the designe…
-
Some kind of problem with declaration the DS010 element with xsd. Try connecting your xml without using xsd.
-
Please send message in support with your xsd and xml files.
-
What version of FastReport.Net are you using? Try to reproduce using actual version.