Downloading a File from the web ?
-
Hi all, using System.Net.WebClient().DownloadFile we can download the files from web in C#. How to incorporate these functionalities in WIN32 C++ projects i am using Microsoft Visual C++ 6.0 Thanks in advance
-
Hi all, using System.Net.WebClient().DownloadFile we can download the files from web in C#. How to incorporate these functionalities in WIN32 C++ projects i am using Microsoft Visual C++ 6.0 Thanks in advance
You can use the URLDownloadToFile[^] API.
«_Superman_» I love work. It gives me something to do between weekends.
Microsoft MVP (Visual C++) -
Hi all, using System.Net.WebClient().DownloadFile we can download the files from web in C#. How to incorporate these functionalities in WIN32 C++ projects i am using Microsoft Visual C++ 6.0 Thanks in advance
You can use the Windows API: UrlDownloadToFileA or UrlDownloadToFileW .
-
You can use the URLDownloadToFile[^] API.
«_Superman_» I love work. It gives me something to do between weekends.
Microsoft MVP (Visual C++)Thank you I will try ...