How can I get my form to objects in the report?

Stimulsoft Reports.NET discussion
Post Reply
pekerl
Posts: 4
Joined: Mon May 10, 2010 4:25 am

How can I get my form to objects in the report?

Post by pekerl »

hi.

How can I get my form to objects in the report?


thanks..
Jan
Posts: 1265
Joined: Thu Feb 19, 2009 8:19 am

How can I get my form to objects in the report?

Post by Jan »

Hello,

Can you explain your question in more details?

Thank you.
pekerl
Posts: 4
Joined: Mon May 10, 2010 4:25 am

How can I get my form to objects in the report?

Post by pekerl »

Jan wrote:Hello,

Can you explain your question in more details?

Thank you.

hello

Add to reports form the image object with the help of my pictures I want to add the button.

thanks ...
Jan
Posts: 1265
Joined: Thu Feb 19, 2009 8:19 am

How can I get my form to objects in the report?

Post by Jan »

Hello,

You can use Image component to show images in your report. Please check Demo application from standard delivery, Images report.

Thank you.
pekerl
Posts: 4
Joined: Mon May 10, 2010 4:25 am

How can I get my form to objects in the report?

Post by pekerl »

Jan wrote:Hello,

You can use Image component to show images in your report. Please check Demo application from standard delivery, Images report.

Thank you.
hello

Well, this image of my form, how do I take pictures ...

examples code ?

Jan
Posts: 1265
Joined: Thu Feb 19, 2009 8:19 am

How can I get my form to objects in the report?

Post by Jan »

Hello,

You can use following code before report rendering:

Code: Select all

Stimulsoft.Report.Components.StiImage image = report.GetComponentByName("Image1") as Stimulsoft.Report.Components.StiImage;
image.Image = myImage;
Thank you.
pekerl
Posts: 4
Joined: Mon May 10, 2010 4:25 am

How can I get my form to objects in the report?

Post by pekerl »

Jan wrote:Hello,

You can use following code before report rendering:

Code: Select all

Stimulsoft.Report.Components.StiImage image = report.GetComponentByName("Image1") as Stimulsoft.Report.Components.StiImage;
image.Image = myImage;
Thank you.
hello

I put the images in advance ..

thanks ...
Post Reply