Re: Downloading web files with Delphi

Posted by John, DelphiLand Team on November 12, 2007

In Reply to Downloading web files with Delphi posted by Fred Green p15901 on November 10, 2007

: I've tried this interesting code for file downloads, but Delphi complaints that it doesn't know Internet related terms like InternetOpen, InternetOpenURL, etc... Do I need a special module for this?

In the unit file that uses these functions, you have to add WININET to the USES-clause (near the top of the code) like this:

uses Windows, Messages, ..., WININET;

Related articles

       

Follow Ups