Mega Code Archive

 
Categories / Delphi / Examples
 

Open a local html file with delphi 4s html component

The following snippet shows what does not work and how to do it instead: begin // this one does not work: HTML1.RequestDoc('file://C:\help.htm'); // these two will do the trick: HTML1.RequestDoc('file:///C:\help.htm'); HTML1.RequestDoc('file://localhost/C:\help.htm'); end.