Hi all,
I am attempting to build an invoice type of report. The goal is to have the customers bill to/ship to in the "Header", the items they ordered listed in the "Details" and the subtotal, taxes, grand total all in the "Footer".
I have the "Footer" set to print at the bottom of the page.
The challenge is to create vertical lines in the details section to separate the fields of information visually. I wish these to extend all the way down from the top of the "Detail" section to the top of the "Footer" section.
In Crystal Reports (sorry) I would draw a line from the top of one section and pass it into the next section.
How can this be achieved?
I attached a simple example of what I am seeing. In the picture, the goal is to extend that line all the way down to the area labeled as "Group Footer".
Hi,
It has been observed that some blank rows with font size 1 have been inserted in one of our report. Could you please help us how to remove them?
I have attached sample report for reference.
How do you format a text box to have a hanging indent? In my report I want to see a multiline text box where the first line is at the left margin, but all subsequent lines are indented.
Hello,
Today i have made an update from R1 2018 to R3_2020_SP1_14_2_20_1021_DEV and now all my reports does not behave as usual.
For instance, a simple data ItemDataBinding of a PictureBox to populate the phisical path of an image is not working ...
Same thing to htmltextbox ... it is not puting the value with ItemDataBinding to the report.
Can you help me? What do you need from me to solve my situation?
This is my code, that in the version R3 worked:
Private Sub PictureBox3_ItemDataBinding(sender As Object, e As EventArgs) Handles PictureBox3.ItemDataBinding
Dim item As Processing.ReportItemBase = DirectCast(sender, Processing.ReportItemBase)
If IO.File.Exists(System.Configuration.ConfigurationManager.AppSettings("Images").ToString() & "cabecalho.PNG") Then
PictureBox3.Value = System.Configuration.ConfigurationManager.AppSettings("Images").ToString() & "cabecalho.PNG"
End If
End Sub
Private Sub HtmlTextBox12_ItemDataBinding(sender As Object, e As EventArgs) Handles HtmlTextBox12.ItemDataBinding
Dim item As Processing.ReportItemBase = DirectCast(sender, Processing.ReportItemBase)
If IO.File.Exists(System.Configuration.ConfigurationManager.AppSettings("Images").ToString() & "contrato_header.txt") Then
Dim fileReader As String
fileReader = My.Computer.FileSystem.ReadAllText(System.Configuration.ConfigurationManager.AppSettings("Images").ToString() & "contrato_header.txt")
HtmlTextBox12.Value = fileReader
End If
End Sub
Thanks,
Nuno
hi
I tried to use angular report viewer + dotnet core 3.1 to represent my report in Linux. The sample I refer to is
AspNetCore3 AngularReportViewer.zip ,
angular report viewer:11.20.1021
Telerik Reporting:14.2.20.1021
But I had two problems,
1,Set for .trdp definition
// Set for .trdp definition
this.viewer.setReportSource({
report: 'Dashboard.trdp'
});
Error:Unable to get report parameters. An error has occurred. Type: Telerik.Reporting.ReportSerialization.V4_0.ReportSerializable`1[Telerik.Reporting.Report]
2,Set for Core Library definition
// Set for Core Library definition
this.viewer.setReportSource({
report: 'ReportLibraryCore.SampleReport, ReportLibraryCore, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'
});
Error:Unable to get report parameters. An error has occurred. Invalid report type
Please refer to the attachment for details.
I want to know what caused my mistake and what I should do.
thank you.
I have a multicolumn report that I would like to have leading dots between the two fields, but I can not find setting in the designer. How do I get the report designer to add leading dots between fields?
Item #1 ...... Reference
Item #2 .. Reference #2
Hi all,
I hope that you can help me.
I want to start using Redis cache for my reports but the initial few tests seem problematic as the entries in Redis have a TTL of -1 and therefore also never expires. I must be doing something wrong, any help would be appreciated.
Tech. stack:
Code sample of the report configuration:
public
ReportConfiguration(ApplicationConfiguration appConfig,
IConfiguration configuration,
IWebHostEnvironment webRoot,
ConnectionMultiplexer redisConnectionMultiplexer )
{
var reportsPath = Path.Combine(webRoot.WebRootPath,
"Reports"
);
ReportingEngineConfiguration = configuration;
HostAppId =
"MyApp"
;
Storage =
new
RedisStorage(redisConnectionMultiplexer, RedisCacheKeys.WebReport);
ReportSourceResolver =
new
TypeReportSourceResolver().AddFallbackResolver(
new
UriReportSourceResolver(reportsPath));
ClientSessionTimeout = 5;
ReportSharingTimeout = 5;
}
I created DataMatrix on Report Designer R3 2020 at next settings
Encoder: DataMatrix
Encodation: Ascii
SymbolSize: SquareAuto
TextEncoding: Unicode (UTF-8)
Module: 2pt
Value:1
But, it could not read by barcode reader.
If the SymbolSize is "RectangleAuto", it can be read. But, I should be use "SquareAuto".
And, my barcode reader can read the same type DataMatrix generated by other web site generator .
Curiously, the DataMatrix for Reporting Designer reports and the DataMatrix for other websites are in the form of mirrors.
Can anyone tell me what's wrong?