Delphi 2007:在delphi中打开另一个应用程序并在该应用程序中执行操作

发布于 2024-12-04 08:42:09 字数 181 浏览 0 评论 0原文

有人可以解释一下我需要 Delphi 2007 的哪些功能/过程/功能来打开其他应用程序并在这些应用程序中执行操作。

例如:我希望 Delphi 启动一个数学软件应用程序,将数据导出到该应用程序,对该数据执行一些操作,然后将数据从应用程序检索到 Delphi。

目前,我对 ShellExecute 命令还不太熟悉。

Would someone explain me which functions/procedures/functionalities I need of Delphi 2007 to open other applications and perform actions in those applications.

For example: I want Delphi to start a mathematical software application, export data to this application, perform some actions on that data and then retrieve the data from the application to Delphi.

At the moment, I'm not too familiar with the ShellExecute command.

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

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

发布评论

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

评论(1

苍暮颜 2024-12-11 08:42:09

大多数应用程序不支持外部自动化,因此在这些情况下您唯一的选择是使用 mouse_event()keybd_event() 来模拟鼠标/键盘活动,和/或使用PostMessage() 和/或 SendMessage() 将模拟消息直接发送到特定窗口。对不支持自动化的应用程序进行自动化并非易事,具体取决于其 UI 的复杂性。

Most applications do not support external automation, so your only option in those cases is to use mouse_event() and keybd_event() to simulate mouse/keyboard activity, and/or use PostMessage() and/or SendMessage() to send simulated messages directly to specific windows. Automating an application that does not support automation is not trivial, depending on the complexity of its UI.

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