Questions tagged [wininet]

The Windows Internet (WinINet) API enables Windows applications to interact with FTP, and HTTP protocols to access Internet resources.

The Windows Internet (WinINet) application programming interface (API) enables applications to interact with FTP, and HTTP protocols to access Internet resources. As standards evolve, these functions handle the changes in underlying protocols, enabling them to maintain consistent behavior.

559 questions
-3
votes
2 answers

Hooking InternetStatusCallback

I am trying to hook the asynchronous callback from Wininet which get's called from TWebbrowser. However there is an error after the hooking is done. Why does this happen? First chance exception at $0018B7A2. Exception class $C000008C with message…
John Lewis
  • 317
  • 2
  • 11
-4
votes
1 answer

How to send to server a binary (.zip) file using Wininet

I want to transfer the file to the site using the POST method on the php site the script accepting "userfile" and which saves it on the server void SendFile() { const char hdrs[] = "Content-Type: multipart/form-data;…
-4
votes
1 answer

Retrieving Java data from internet with c++

I am currently writing a Windows application with multiple features in MS Visual Studio 2013 in C++. One of the features has to be that it can plot actual data on the screen. I have succeeded in plotting the graph, but I have not been able yet to…
Robert Smit
  • 163
  • 1
  • 1
  • 6
-5
votes
1 answer

How To Use InternetOpen, InternetOpenUrl and InternetReadFile

How I Download The WebPage Content Using winInet.dll Code (from the comments): url="http://links.casemakerlegal.com/states/TX/books/Case_Law/results?search[Cite]=359%20S.W.3d.%20856" Uri urlCheck = new Uri(url); WebClient wc = new WebClient();…
1 2 3
37
38