quote:
Originally posted by rob_botch
Thnak you very much. I can work out what most of the variables refer to, but there are a few properties that I am a bit confused about:
What is ConnectionHandle (and its value?)
What does "result" refer to?
What are the properties DetailsArray.DP and dpname?
Thank you,
Robert
The ConnectionHandle is the pointer to the Connection you started, this way you could handle more than one connection.
result is the result you get back from the api to see if everything went ok.
DetailsArray.DP is the location of the file you want to upload and dpname is the filename
BTW: Dempsey forgot the to make the connection
code:
ConnectionHandle = Interop.Call('wininet', 'InternetOpenW', 'Connectionname', 0, 0, 0, 1);