Image from URL

Stimulsoft Reports.NET discussion
Post Reply
Alex Horn
Posts: 11
Joined: Mon Jun 12, 2006 3:17 am

Image from URL

Post by Alex Horn »


In field of table stored url to images. What properties can i use to show images with this urls in report?
Alex Horn
Posts: 11
Joined: Mon Jun 12, 2006 3:17 am

Image from URL

Post 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?
Edward
Posts: 2913
Joined: Fri Jun 09, 2006 4:02 am

Image from URL

Post 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!
Post Reply