使用 Delphi 中的 TAPI 拨打电话
我需要使用 Delphi 2006 中的 TAPI 发起呼叫。我希望它尽可能简单。对于简单的组件有什么建议吗?是在《绝地武士》中吗?
I need to initiate a call using TAPI from Delphi 2006. I'd like it to be as simple as possible. Any suggestions for a simple component? Is it in JEDI?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你可以使用TurboPower Async Professional,前段时间我使用了这个库并且工作得很好,你可以找到有关 tapi 和 AsyncPro 组件的更多信息,请参阅此链接。
you can use the TurboPower Async Professional, some time ago I used this library and worked perfect, you can find more info about tapi and the AsyncPro component in this link.
以下是组件列表 一些免费软件 一些共享软件
http://www.torry.net/pages .php?id=199
谢谢
Here is a list of components some freeware some shareware
http://www.torry.net/pages.php?id=199
Thanks
要使用 Tapi 和 delphi,您只需要两件事。
一个。导入 dll 并创建 tlb 文件。
在delphi菜单中,转到componenets,然后选择导入组件,然后选择导入类型库,输入“tapi3”并选择tapi3.dll。
b.使用创建的 dll 进行调用,您只需使用
并将“555-5555”替换为用户输入的文件编号(作为字符串)。
To use Tapi and delphi all you need is 2 things.
a. import the dll and create the tlb file.
in the delphi menu, go to componenets, then choose import components, then choose import type library, type "tapi3" and pick the tapi3.dll.
b. with the dll created to make a call you simple need to use
and replace the '555-5555' with the user input file number, as string.
implementation
之前添加此行,如下所示在调用
tapiRequestMakeCallw
之后的Add this line before the
implementation
after that call
tapiRequestMakeCallw
like that