Hi,

How to print a message upon DownloadComplete event of VB Webbrowser DownloadComplete Even??
The Codes below brings up www.microsoft.com Webpage, but the 'WebBrowser1_DownloadComplete = True ' may not be coded correct
ly.

Pls help. (Do we need to use event handler? Or is the Return Value not Boolean?)


Private Sub Command1_Click()

WebBrowser1.Navigate "http://www.microsoft.com"

If WebBrowser1_DownloadComplete = True Then
MsgBox "WINNET"
End If
End Sub