LekPio
LekPio
About
- Username
- LekPio
- Joined
- Visits
- 69
- Last Active
- Roles
- Members
Comments
-
The solution is: item := TfrxPictureView.Create(reportTitle); sl:=TStringList.Create(); sl.Text:=SVGText; memStream:=TMemoryStream.Create(); sl.SaveToStream(memStream); memStream.Position:=0; item.LoadPictureFromStream(memStream);
-
Thanks that was helpful
-
Due to company policy I cannot download the exe The question still remains... How do I set the EvenStyle in .net? for example how do I set the background/fill color of a row for the following? dataBand.EvenStyle = "Fill.BackColor=silver";
-
ok...I changed my code to .Select(s=> new { Description = s.ConfigStatusComponent.Description,Description2=s.Description}).ToListAsync(); and that gets me a simple IEnumerable list
-
Did you try using report.RegisterData & report.GetDataSource? // register the "Products" table report.RegisterData(dataSet1.Tables["Products"], "Products"); // enable it to use in a report report.GetDataSource(&quo…
-
It's been working without any issues with my application that I have ported from ASP.NET Core 3.1 to NET 5. I create all my reports dynamically (without the designer). I basically used the examples from the link below to create my reports. I hope th…
-
Thank you, that was very helpful...here's how I did the code in .NET 5 //Create the BarcodeObject Base var barcodeObjectQRBase = new FastReport.Barcode.BarcodeObject { Name = "Barcode48", Left = FastReport…
-
To get the Web Root Path try In Core 2.0 public class HomeController : Controller { private readonly IHostingEnvironment _hostingEnvironment; .......... public HomeController(IHostingEnvironment hostingEnvironment) { …