-
WinInet API
WHAT's Wrong with this Code [doesnt work!]? RUNTIME VB says DLL entry point for INTERNET_DOWNLOADCOMPLETE not found.
Please email Correct code. Thanks
Private Declare Function _
INTERNETEXPLORER_DownloadComplete Lib "wininet.dll" ()
Private Sub Command1_Click()
If INTERNETEXPLORER_DownloadComplete Then
MsgBox (WINNET)
End If
End Sub
-
Re: WinInet API
You know, I have browsed through the wininet.dll and I have not seen there a function with a name even close to what you describing. Check again maybe you are using wrong function name.
-
Re: WinInet API
Thanks.
Which DLL package will those WebBrowser events such as BeginDownLoad/DownloadComplete be in ?
-
Re: WinInet API
DownLoadComplete is an Event of the WebBrowser control, not an API in Wininet.dll.
You will find it, if you add a webbrowser control to a form window, double-click it and select the Event in the event dropdown combo.
-
Re: WinInet API
See the message above mine in this thread