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

    status call back

    anyone have example of how to set
    InternetSetStatusCallback function?


  2. #2

    Re: status call back


    ' set the callback function
    private Declare Function InternetSetStatusCallback Lib "wininet.dll" _
    Alias "InternetSetStatusCallbackA" (byval hInternet as Long, _
    byval lpfnInternetCallback as Long) as Long

    Call InternetSetStatusCallback(hInternetSession, lpfnCallback)







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