With VB I'd rather use the winsock control directly.
I found some bugs with the?INET control. I think this
happened in asynchronous mode.
?
Here is a good site on how to use the winsock control :
?
toggle quoted message
Show quoted text
----- Message d'origine -----
贰苍惫辞测é?: vendredi 14 juin 2002
20:06
Objet : RE: TWSAPI: General: Anyone know
how to refrence a webpage and read it?
Its
easy to do. In VB look at the internet transfer control in the docs
(ITC).? Basically you include the ITC on your form and execute something
similar to:
?
dim
s as string
s = inet1.openurl("html")
?
In
C++ you would use the wininet dll.? the ITC is an OCX wrapper around the
wininet.dll.?
?
There are other techniques using the browser as a control and then
reading the contents (mshtml), but these are the easiest techniques in my
opinion.? Once you have the data, parsing is
straightforward.
?
...
Dan