打开文件目录

发布于 2024-10-22 03:35:59 字数 139 浏览 3 评论 0原文

大家好 我在 Delphi 上插入 Oracle 数据库映像文件(创建表(id int,dir varchar2(200),image blob)。现在我想在 dblick dbimage1 上打开该文件的目录(dir) 示例:D:\image.bmp 提前致谢

hi to all
I insert into Oracle database image file on Delphi(create table (id int,dir varchar2(200),image blob). Now I want to open directory(dir) of that file on dblick dbimage1
example: D:\image.bmp
Thanks in advance

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

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

发布评论

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

评论(2

后知后觉 2024-10-29 03:35:59
uses ShellAPI;

...

// opens Windows Explorer with the file highlighted
ShellExecute(Handle,
             'open',
             'C:\Windows\explorer.exe',
             '/start,"' + ImageFileName + '"',
             nil,
             SW_SHOWNORMAL);

// opens the default program associated with the type (extension) of the file,
// which in your case can very well be Windows Fax and Picture Viewer
ShellExecute(Handle,
             'open',
             nil,
             '"' + ImageFileName + '"',
             nil,
             SW_SHOWNORMAL);

如果 ImageFileName 已包含 ",请在上面的代码中将其删除。

uses ShellAPI;

...

// opens Windows Explorer with the file highlighted
ShellExecute(Handle,
             'open',
             'C:\Windows\explorer.exe',
             '/start,"' + ImageFileName + '"',
             nil,
             SW_SHOWNORMAL);

// opens the default program associated with the type (extension) of the file,
// which in your case can very well be Windows Fax and Picture Viewer
ShellExecute(Handle,
             'open',
             nil,
             '"' + ImageFileName + '"',
             nil,
             SW_SHOWNORMAL);

If ImageFileName already contains ", remove them in the code above.

寄居人 2024-10-29 03:35:59

您可以使用 TOpenPictureDialog 让用户选择图像文件。

You can use a TOpenPictureDialog to let the user select an image file.

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