web browser control

  • Thread starter Thread starter portroe
  • Start date Start date
P

portroe

I am Using the web browser control, in conjunction with data pulled down
from web services,

Browser.? = foundinfo.Details(i).ImageUrlSmall.?

I cannot seem to get it to work,

can anybody help?


thanks
 
* portroe said:
I am Using the web browser control, in conjunction with data pulled
down from web services,

Browser.? = foundinfo.Details(i).ImageUrlSmall.?

What exactly do you want to do? Navigate to an URL? Have a look at the
control's 'Navigate' method.
 
Hi Herfried,

i need it to display an image that is supplied from the web service,
(amazon)

I unfortunatly do not know what the other side of the argument should
look like either, hence foundinfo.Details(i).ImageUrlSmall.?

Portroe
 
Hi portroe,

You can get every thing with a webbrowser with

webbrowser.navigate2(url) the same as you would do it with IE.

So try it first with IE, because that does exactly the same (the webbrowser
is reusing IE)
..
(I do not believe you take the right approach but maybe I do understand you
wrong and than you can try this)

Cor
 
* portroe said:
i need it to display an image that is supplied from the web service,
(amazon)

I unfortunatly do not know what the other side of the argument should
look like either, hence foundinfo.Details(i).ImageUrlSmall.?

What's 'foundInfo'?
 
Dim foundinfo As ProductInfo

found info is the information which is returned by the webservice,
 
* portroe said:
Dim foundinfo As ProductInfo

found info is the information which is returned by the webservice,

Without knowledge about 'ImageUrlSmall' any help is impossible.
 
this bworks,

thanks for your help,

Browser.Navigate2(foundinfo.Details(i).ImageUrlSmall)
 
Back
Top