How to Use Image Control????

Stimulsoft Reports.NET discussion
Post Reply
abhi0410
Posts: 47
Joined: Fri Sep 26, 2008 12:42 pm
Location: bombay

How to Use Image Control????

Post by abhi0410 »

How to use Image control in the report ???

How to use Image control with SQL SERVER 2005?

Thanks
Edward
Posts: 2913
Joined: Fri Jun 09, 2006 4:02 am

How to Use Image Control????

Post by Edward »

Hello.

The image component (in the page) has a DataColumn property. Using this property you can specify DataColumn which contains an image data.
How to use Image control with SQL SERVER 2005?
Image control has a Control property. This property represents a standard Windows Forms PictureBox with appropriate an Image property. This property can be assigned as follows:

Code: Select all

PictureBox1.Control.Image = StiImageHelper.GetImageFromObject(MyDataSource.MyDataColumn);
Thank you.
Post Reply