Delphi 2007:在delphi中打开另一个应用程序并在该应用程序中执行操作
有人可以解释一下我需要 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大多数应用程序不支持外部自动化,因此在这些情况下您唯一的选择是使用
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()
andkeybd_event()
to simulate mouse/keyboard activity, and/or usePostMessage()
and/orSendMessage()
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.