Einzelnen Beitrag anzeigen

shmia

Registriert seit: 2. Mär 2004
5.508 Beiträge
 
Delphi 5 Professional
 
#2

Re: Text (Content) einer ms-help://-Adresse erhalten

  Alt 15. Jan 2008, 11:44
Versuch mal:
Delphi-Quellcode:
Uses ...,UrlMon;
function DownLoadInternetFile(const Source, Dest : String): Boolean;
begin
   Result := URLDownloadToFile(nil,PChar(Source),PChar(Dest),0,nil) = 0
end;

if DownLoadInternetFile('ms-help://borland.bds5/devcommon/codeeditor_xml.html', 'C:\codeeditor_xml.html') then
begin
   // ok
end;
Andreas
  Mit Zitat antworten Zitat