up vote 0 down vote favorite
share [g+] share [fb]

Giving a URL to the TOpenFileDialog, the Execute method throws an exception:

OpenDialog1.Filename := 'http://www.osfi-bsif.gc.ca/app/DocRepository/1/eng/issues/terrorism/indstld_e.xls';
bResult := OpenDialog1.Execute;

But you are allowed to open files from a URL.

Delphi 5

link|improve this question

69% accept rate
feedback

2 Answers

up vote 3 down vote accepted

TOpenDialog is just a wrapper for the windows function GetOpenFileName in comdlg32.dll.

function TOpenDialog.Execute(ParentWnd: HWND): Boolean;
begin
  Result := DoExecute(@GetOpenFileName, ParentWnd);
end;

Unfortunately the documentation for this function isn't that great. But I'm pretty sure it doesn't support http.

link|improve this answer
Well holy crap. Try going to notepad and entering google.com/robots.txt in the open file dialog. – Blorgbeard Sep 26 '08 at 4:32
of course, that might not be the standard GetOpenFileName function.. – Blorgbeard Sep 26 '08 at 4:33
feedback

Where does it say it is allowed? I don't remember that working when I was using Delphi 5, but that was 8 or so years ago, so I may just have forgotten

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.