728x90
반응형
인터넷 URL 문서 저장하기
728x90
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, URLMon;
type
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
URLDownloadToFile(nil, 'http://www.***.html', 'c:\index.html', 0, nil);
end;
end.
728x90
반응형
'Delphi Tip > 파일' 카테고리의 다른 글
프로그램에 사용 DLL 목록 가져오기 (0) | 2024.03.06 |
---|---|
델파이 TcxDBTreeList 엑셀변환 (0) | 2024.01.05 |
델파이 리소스(Resource)의 활용 2 (0) | 2023.10.18 |
델파이 리소스(Resource)의 활용 1 (0) | 2023.10.13 |
델파이 리소스(Resource) (0) | 2023.09.26 |
댓글