Page 1 of 1

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

Posted: Mon May 10, 2010 5:10 am
by pekerl
hi.

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


thanks..

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

Posted: Mon May 10, 2010 8:06 am
by Jan
Hello,

Can you explain your question in more details?

Thank you.

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

Posted: Mon May 10, 2010 8:24 am
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 ...

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

Posted: Mon May 10, 2010 12:02 pm
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.

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

Posted: Tue May 11, 2010 12:43 am
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 ?


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

Posted: Tue May 11, 2010 12:56 am
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.

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

Posted: Tue May 11, 2010 1:42 am
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 ...