Re: WebBrowser Event Control
I haven't used the WebBrowser control, but it appears to me DownloadComplete is an event handler. In other words, in your example, I assume WebBrowser1_DownloadComplete procedure will be called. Therefore, as opposed to using WebBrowser1_DownloadComplete in an if statement, you need code like this...
private Sub WebBrowser1_DownloadComplete()
MsgBox "WINNET"
End Sub
FYI...There also appears to be an event handler named WebBrowser1_DocumentComplete, and there appears to be a WebBrowser1.Busy property which may be of interest to you.