What are the message functions OnDownloadBegin() and OnDownloadComplete() used for? May seem obvious but im not sure lol
Lewis
When the WebBrowser control is about to begin a download operation, it fires the DownloadBegin() event. The control fires a number of ProgressChange() events as the operation progresses, and then it fires the DownloadComplete() event after completing the operation. Applications typically use these three events to indicate the progress of the download operation, often by displaying a progress bar.
Paul.
Ok thanks Paul
Lewis