Examples Delphi

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.