> Hello,
>
> How can I connect object MSXML2.XMLHTTP with a progress bar to show how
> much data already has been downloaded?
In no easy way if you do a plain "GET" or "POST".
The server just sends out a steady stream of data, without any
"chunking" you can intercept...
But you could fake it with a progressbar-like control that moves back
and forth while "readyState" <> 4
> How to get size of dynamically created XML file from a remote HTTP
> server?
Do a "HEADER" request first... "content-length" should be one of the
header fields.

Signature
Dag.