Delphi:OpenFileDialog 因 URL 崩溃

发布于 2024-07-07 05:58:30 字数 255 浏览 12 评论 0原文

给 TOpenFileDialog 一个 URL,Execute 方法会抛出异常:

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

但是您可以从 URL 打开文件。

德尔福5

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

静水深流 2024-07-14 05:58:30

TOpenDialog 只是 comdlg32.dll 中 Windows 函数 GetOpenFileName 的包装。

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

不幸的是,此功能的文档并不是那么好。 但我很确定它不支持http。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文