Page 1 of 1

How to Use Image Control????

Posted: Sat Sep 27, 2008 5:49 am
by abhi0410
How to use Image control in the report ???

How to use Image control with SQL SERVER 2005?

Thanks

How to Use Image Control????

Posted: Mon Sep 29, 2008 5:32 am
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.