CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5

Thread: WinInet API

  1. #1
    Join Date
    Jan 2000
    Posts
    14

    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



  2. #2
    Join Date
    Dec 1999
    Location
    Baltiore, MD, USA
    Posts
    8

    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.



  3. #3
    Guest

    Re: WinInet API

    Thanks.

    Which DLL package will those WebBrowser events such as BeginDownLoad/DownloadComplete be in ?


  4. #4
    Join Date
    May 1999
    Posts
    3,332

    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.


  5. #5
    Join Date
    Dec 1999
    Location
    Baltiore, MD, USA
    Posts
    8

    Re: WinInet API

    See the message above mine in this thread


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured