Click to See Complete Forum and Search --> : WinInet API
Btang11111
January 30th, 2000, 09:48 PM
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
Leonid Shraybman
January 30th, 2000, 10:56 PM
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.
January 31st, 2000, 05:53 AM
Thanks.
Which DLL package will those WebBrowser events such as BeginDownLoad/DownloadComplete be in ?
Lothar Haensler
January 31st, 2000, 06:12 AM
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.
Leonid Shraybman
January 31st, 2000, 06:21 PM
See the message above mine in this thread
codeguru.com
Copyright Internet.com Inc., All Rights Reserved.