Page 1 of 1

Image from URL

Posted: Fri Jun 23, 2006 4:40 am
by Alex Horn

In field of table stored url to images. What properties can i use to show images with this urls in report?

Image from URL

Posted: Fri Jun 23, 2006 4:44 am
by Alex Horn

Sorry, i found solution. I can use property ImageUrl. But i have new question:

Can i load image from url from BeforePrintEvent?

Image from URL

Posted: Fri Jun 23, 2006 6:38 am
by Edward
Alex wrote: Can i load image from url from BeforePrintEvent?
Yes, you can load image from url in BeforePrintEvent:

Code: Select all

Image1.Image = Stimulsoft.Base.Drawing.StiImageFromURL.LoadBitmap("http://www.domain.com/bitmap.gif");
Where Image1 is your Image component.
Thanks!