- 註冊時間
- 2006-3-13
- 最後登錄
- 2025-1-10
- 在線時間
- 673 小時
- 閱讀權限
- 200
- 積分
- 417
- 帖子
- 1107
- 精華
- 0
- UID
- 2
  
|
在 uese 宣告 URLMon
然後加入下列函數
- function DownloadFile(Source, Dest: string): Boolean;
- begin
- try
- Result := UrlDownloadToFile(nil, PChar(source), PChar(Dest), 0, nil) = 0;
- except
- Result := False;
- end;
- end;
- // Example:
- procedure TForm1.Button1Click(Sender: TObject);
- begin
- if DownloadFile ('http://www.delphi3000.com/index.htm, 'c:\index.htm') then
- ShowMessage('Download successful')
- else
- ShowMessage('Download unsuccessful')
- end;
複製代碼 |
|