How can I get my form to objects in the report?
Posted: Mon May 10, 2010 5:10 am
hi.
How can I get my form to objects in the report?
thanks..
How can I get my form to objects in the report?
thanks..
Reporting tool and data analytics tools for creating reports and dashboards in ASP.NET, ASP.NET MVC, .NET Core, Blazor, Angular, PHP, Python, WPF, JavaScript, and Java applications.
https://forum.stimulsoft.com/
Jan wrote:Hello,
Can you explain your question in more details?
Thank you.
helloJan wrote:Hello,
You can use Image component to show images in your report. Please check Demo application from standard delivery, Images report.
Thank you.
Code: Select all
Stimulsoft.Report.Components.StiImage image = report.GetComponentByName("Image1") as Stimulsoft.Report.Components.StiImage;
image.Image = myImage;
helloJan wrote:Hello,
You can use following code before report rendering:
Thank you.Code: Select all
Stimulsoft.Report.Components.StiImage image = report.GetComponentByName("Image1") as Stimulsoft.Report.Components.StiImage; image.Image = myImage;