Web Based Picture reader

Hey all,

I am working on something for a small church, they have a sermon series each month, and each week they have different seroms, etc.. you know the deal.

On their web site they have a picture for each series, my simple question is:

How can i make a container/layer/image/etc that reads this image (as it changes all the time) and shows it in a little box in the widget im making for them?

I have managed to make a simple empty web page with just this image in it, and i can show that on my widget by using a "microsoft web browesr" item. But i get these dang scroll bars, dont want them. If i could get rid of the scroll bars then this would be fine for what im doing.

If there is a easier way, im open to it .


Thanks all!
RomanDA
2,536 views 3 replies
Reply #1 Top
The easiest way to do this is using
Object.Picture = "http:// images3.stardock.com/wc/T_AERO/images/sitelogo.jpg"

If each sermon has a unique identifier, the date for example, you could do something similar too
Object.Picture = "http:// images3.stardock.com/wc/T_AERO/images/sitelogo" & dateVar & ".jpg"

Hope this helps you out.
Reply #2 Top
ExodusCrow....AWSOME!!

Works perfect.. The image is stored in a db, and this is perfect it allows me to pull it in just like i wanted.. thanks soooo much!
Reply #3 Top
No problem. Glad I could help!