Questions tagged [skype4com]

Skype4COM is an ActiveX component that represents the Skype API as objects, with properties, commands, events and notifications. Use Skype4COM in any ActiveX environment, such as Visual Studio or Delphi, and with a standard scripting language, such as Visual Basic, PHP, or JavaScript.

Skype4COM is an ActiveX component that represents the Skype API as objects, with properties, commands, events and notifications. Use Skype4COM in any ActiveX environment, such as Visual Studio or Delphi, and with a standard scripting language, such as Visual Basic, PHP, or JavaScript.

147 questions
2
votes
2 answers

Getting error on using Skype4ComLib

Hi I am using Skype4ComLib to retrieve Skype contacts but I am getting error: Retrieving the COM class factory for component with CLSID {830690FC-BF2F-47A6-AC2D-330BCB402664} failed due to the following error: 80040154 Class not registered…
BreakHead
  • 10,480
  • 36
  • 112
  • 165
2
votes
3 answers

running SKYPE4COM on iis 64bit

I create a web application that communicate with Skype by using SKYPE4COM. Now, I have finished with my coding and the program can run properly. I use VS2008 and config a debug mode that run on x86 (Actually my machine is 64 bit) So,I put my code…
honeybe
  • 21
  • 1
2
votes
0 answers

Skype4com.dll not working for latest update

I was using Skype4com.DLL but it is deprecated not working with the skype latest updates. I was using it in a Skype plugin(windows application) to log in and make calls. As an alternative, I have found UCWA Skype Web SDK. (I'm not sure if this is…
devedv
  • 562
  • 2
  • 15
  • 45
2
votes
0 answers

Unable to call using Skype API in C#

I am trying to make calls through Skype API in C#. I can only open Skype but I am not able to make calls. I am looking for some suggestions to solve the issue. public void MakeCall() { string PhoneName = Mike; string MyXMLFilePath =…
HelloWorld
  • 77
  • 1
  • 6
2
votes
0 answers

C# record video from Skype using SKYPE4COMLib

Hi i am writting Skype recorder. In SKYPE4COMLib documentation i found methods how to record audio calls from microphone and headphones: call.CaptureMicDevice[TCallIoDeviceType.callIoDeviceTypeFile] =…
Sergiy Shvets
  • 180
  • 2
  • 14
2
votes
0 answers

Add User To Skype Conference Call

I'm simply trying to add a user to a Skype group call, not making a new call with them. Is there some command that makes this possible? I've tried using this: Skype.ActiveCalls(1).Participants.Add(...) But it requires a Skype4COMLib.Participant…
Jestor
  • 19
  • 4
2
votes
1 answer

Using Excel VBA to send Skype messages to Group Chat

I'm trying to use Excel VBA to send Skype messages and I found this code Sub Test() Dim aSkype As SKYPE4COMLib.Skype Set aSkype = New SKYPE4COMLib.Skype Dim oChat As Chat Dim skUser As SKYPE4COMLib.User Set skUser = aSkype.User("user_name") …
TrevorDhien
  • 25
  • 1
  • 2
  • 7
2
votes
1 answer

How to get contact details in Skype4COM?

I am trying to grab the FullName and Handler from a contact I receive in Skype chat. I managed to get a breakpoint in this event: Skype.MessageStatus += OnMessageStatus; public void OnMessageStatus(ChatMessage pMessage, TChatMessageStatus…
BrunoLM
  • 97,872
  • 84
  • 296
  • 452
2
votes
0 answers

Auto accept files in Skype

I wonder if is it possible to do autoaccept for incoming files in skype with C#/.NET. I'm using SKYPE4COMLib, but I can't find a way for this feature. It has FileTransferStatusChanged event, but it fires when file is accepted. I know that it would…
Oleksii Aza
  • 5,368
  • 28
  • 35
2
votes
2 answers

c# simple skype app throws COM exception

I am making my first Skype app that can simply message a user but when I debug I get a exception that crashes my app. Here is the code: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using…
Gerard2202
  • 151
  • 6
  • 18
2
votes
0 answers

C# Skype4Com send HTML message

I've delayed asking this question as long as I can, but I still cannot find an answer anywhere (Or even a question!). As most Skype users likely know, there was a version (5.7 I believe) that could send over basic HTML in messages when holding Ctrl…
Zeno Chan
  • 21
  • 2
2
votes
0 answers

Samples of using Skype API phone call

Is there a good tutorial or example out there for initiating a Skype phone call through the API using C#/ASP.NET MVC3? I did some searching on the web but could not find info specific to initiating a call through the API.
tacos_tacos_tacos
  • 10,277
  • 11
  • 73
  • 126
1
vote
1 answer

Skype4COM C++ event handling

Could anyone provide working example in C++ with event handling for Skype4COM, i.e. incoming call or incoming message handling? I use "IDispEventImpl" to catch events, but it gives an error when event occurs: 0xC0000005: Access violation writing…
Yury
  • 93
  • 1
  • 10
1
vote
2 answers

Cannot reference a dll in console application but I can in wpf

I have a console application and a wpf application. on both applications I have added the skype4com.dll reference The code: SKYPE4COMLib.Skype oSkype = new SKYPE4COMLib.Skype(); gives an: InvalidCastExeption stating: Unable to cast COM object of…
Tono Nam
  • 34,064
  • 78
  • 298
  • 470
1
vote
1 answer

Send file with skype4com in C#?

Is it possible send file from C# application over Skype? I searched several topics but I haven't found any solution.
Saint
  • 5,397
  • 22
  • 63
  • 107
1 2
3
9 10