Dette er ikke et ordentligt svar !! mere en forklaring af de forskellige
states
> 8
> 9
> 10
>
> og det kommer altid efter en request der lykkes så jeg har på
> fornemmelsen at der er noget galt med den der lykkes
men hvorfor
> slutter den med 7 og 8 når den lige har fået 12 = Responcecomplete
> Men den stopper altid ved state = 10
'---- Internet Transfer Control State Constants ----
Const icNone = 0 'No state to report.
Const icResolvingHost = 1 'The control is looking up the IP address of the
specified host computer.
Const icHostResolved = 2 'The control successfully found the IP address of
the specified host computer.
Const icConnecting = 3 'The control is connecting to the host computer.
Const icConnected = 4 'The control successfully connected to the host
computer.
Const icRequesting = 5 'The control is sending a request to the host
computer.
Const icRequestSent = 6 'The control successfully sent the request.
Const icReceivingResponse = 7 'The control is receiving a response from the
host computer.
Const icResponseReceived = 8 'The control successfully received a response
from the host computer.
Const icDisconnecting = 9 'The control is disconnecting from the host
computer.
Const icDisconnected = 10 'The control successfully disconnected from the
host computer.
Const icError = 11 'An error occurred in communicating with the host
computer.
Const icResponseCompleted = 12 'The request has completed and all data has
been received.
Heraf: selvfølgelig vil den stoppe ved 10 - den er "successfully
disconnected"
Her er en liste over states:
http://www.insightgraphics.com/reference/ITCRetrieval.htm
kig evt på
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/Inet98/html
/vbmthgetchunkx.asp
mhv
Robert