使用 Skype API 通过 vb.net 拨打电话

发布于 2024-07-24 08:03:07 字数 87 浏览 6 评论 0原文

  1. 如何在我的 vb.net 应用程序中包含 Skype 库?
  2. 如何通过 VB、NET 在 Skype 上拨打电话?
  1. how do i include the skype libraries in my vb.net app?
  2. how do i make a call on skype through vb,net?

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

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

发布评论

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

评论(3

Smile简单爱 2024-07-31 08:03:08

Skype 提供了可从 VB.NET 使用的 COM API。 有关从 VB.NET 使用 COM 的详细信息,请参阅:

http://msdn。 microsoft.com/en-us/library/x66s8zcd.aspx

Skype API 文档可在以下位置找到:

https://developer.skype.com/Docs/ApiDoc

而且,虽然不是在 VB.NET 中,但在 SEHE AKA Skype 事件处理程序示例。 它是用 C# 编写的,但同样的原理也适用于 VB.NET,只是语法略有不同。

Skype provides a COM API that can be used from VB.NET. For more info on using COM from VB.NET see:

http://msdn.microsoft.com/en-us/library/x66s8zcd.aspx

The Skype API documentation can be found at:

https://developer.skype.com/Docs/ApiDoc

And, although not in VB.NET there is good example of how to use the Skype API in the SEHE AKA Skype Event Handler Example. It is written in C#, but the same principles apply to VB.NET, just slightly different syntax.

半透明的墙 2024-07-31 08:03:08

这是 C# 语言,但很容易转换为 VB 使用 Skype API

This is in C# but its easy enough to convert to VB using the Skype API

流殇 2024-07-31 08:03:08

这是使用 vb.net 拨打 Skype 的代码,包括声明。

Imports SKYPE4COMLib
Public class form 1
Public WithEvents skype As New SKYPE4COMLib.Skype
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
  'check if the skype client is running
  If Not skype.Client.IsRunning Then
        skype.Client.Start()
    End If
end sub
'use a button or other control to place a call to the test account of skype
 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    skype.PlaceCall("echo123")
End Sub

要给别人打电话只需替换 echo123,不要忘记“引号”

here is the code to place a call on skype with vb.net, inculding declaration.

Imports SKYPE4COMLib
Public class form 1
Public WithEvents skype As New SKYPE4COMLib.Skype
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
  'check if the skype client is running
  If Not skype.Client.IsRunning Then
        skype.Client.Start()
    End If
end sub
'use a button or other control to place a call to the test account of skype
 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    skype.PlaceCall("echo123")
End Sub

to place a call to somone else just replace echo123, dont forget the "quotes"

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