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.

learn more… | top users | synonyms

0
votes
0answers
39 views

Loading Skype4COM.dll from .net 4.0 as .net 3.5 or below

I’ve been trying to use the Skype4COM.dll in my C# Windows Form project to allow it to send and receive SMS using Skype. Up to this point I notice that Skype4COM.dll will work really well whenever I ...
1
vote
1answer
69 views

Skype automatically blocks c# debug project

Since an update to Skype in the past few days - a c# project I have can no longer connect to Skype. Skype.Attach() is all is usually takes but now when I run through debugging the project, it fails to ...
0
votes
0answers
27 views

Code to implement personal voicemail in Skype

I have a project where I will be receiving Skype calls from certain set of Skype users. The user needs to be responded by a pre-defined message and then based on response will be directed to next stop ...
0
votes
0answers
162 views

Skype4COM: to identify the incoming call event and assosciate it with one of the active skype clients on my machine

My Project: I need to build up a Skype Listener server for one of my project. It will: 1. Host 8 different dummy Skype accounts. 2. All accounts will already have associated: (a) Already Recorded ...
-1
votes
1answer
74 views

Creating Automatic Skype Listener

I need to build up a Skype Listener server for one of my project. It will: 1. Host 8 different dummy Skype accounts. 2. All accounts will already have associated: (a) Already Recorded audio files ...
0
votes
0answers
60 views

How to hide conversation in skype

i am trying to hide conversations from recents, using skype API. So, How can i do it? I tried skype4com. (http://developer.skype.com/account/tools) And unfortuannaly didn't find any ways to do it. ...
0
votes
2answers
81 views

How to determine if particular process is running

I am building an application to change my Skype status to busy whenever a particular program is being run. I tried the following code: Private Sub WaitTimer_Tick(sender As Object, e As EventArgs) ...
1
vote
1answer
185 views

Delete skype group chat with Skype4com

I have tried to make a function that will clear my Skype group chats. Here is what I came up with: 1. foreach (SKYPE4COMLib.GroupCollection d in skype.Groups) { skype.DeleteGroup(d.Count); } ...
0
votes
0answers
77 views

Create mutliple instances for every loop

I want to be able to create a new 'group chat' every time the loop occurs but it will only create it once because I don't know how to create another instance of the chat. for (int ii = 0; ii < ...
1
vote
1answer
139 views

Blocking a contact with Skype4com

I'm not sure how to actually block or remove a user using 'SKYPE4COMlib' extention for Visual C#. I can change my status, return messages but I do not know how to do that. If anyone has an idea of any ...
-1
votes
2answers
227 views

Skype application using SkypeKit SDK using c++(vc++2010) [closed]

I want to develop Skype app using skypeKit for c++. How can I get skypeKit SDK for c++, please guide me the steps to start working with skypeKit c++. I have already member of Skype Developer program. ...
0
votes
1answer
95 views

Skype Desktop API and video recording

Skype Desktop API allows audio recording (both directions), but there are no options for video recording. I can easily capture source video (from default capture device), but how can I capture ...
4
votes
1answer
329 views

PHP & Skype integration on ubuntu

I just started looking at skype developer api to wrap skype sms sending in web application. I just want to send and receieve skype messages using web application . I have some question here . I ...
2
votes
2answers
205 views

Get Profile picture using SKYPE4COM

Is this possible to display my profile picture as well as my friends profile picture in a picturebox control?? Am using c# and SKYPE4COM. Any suggestions..
3
votes
2answers
229 views

Missed Chats on Skype using C#

Am trying to display unread chats from skype to my c# application. I used int msgCount=skype.MissedMessages.Count to get number of unread messages and tried given functions ...
0
votes
0answers
142 views

Skype4COM making video call with video stream

I am not sure you got my main idea so I will explain. I am developing something like a plugin for skype with C#(WPF) and for that reason I use SKYPE4COM. I want to establish a video call but I want to ...
4
votes
1answer
224 views

Fail to attach windows service with Skype4COM to Skype Client

I tried to create a windows service which will allow to interact with Skype Client. I'm using SKYPE4COM.DLL lib. When I create a simple console or win32 aplication all works ok (I have the Skype ...
1
vote
1answer
214 views

Skype4Com Get Friends Contacts?

I have the following code in C# that add items "friends contacts" to checkListItem UI Control But the question is what is the diff between DisplayName and FullName properties in Friend class???? ...
0
votes
1answer
104 views

Issues with running skype bot on server

So I have a skypebot which is running on Server 2003. I have skype installed and the bot is just a .Net executable. It works great, except when I try to have it run without me logged into the system. ...
2
votes
2answers
236 views

How to create an instance of skype class in c#?

I'm trying to make use of SKYPE4COMLib.dll. I've got past referencing the library (huh), and now I'm trying to create an instance of skype: Skype s=new SkypeClass(); I'm getting following errors: ...
0
votes
0answers
99 views

Event on received message

I want to make a Skype translation bot. The translation is working fine, but i have to know how to read incoming messages. So for example, if i got a message, it shows me a messagebox with the ...
0
votes
0answers
216 views

Skype API (SKYPE4COMLib). How to read chat message that hasn't been sent yet?

Is it possible to read chat message that hasn't been sent yet? I want to show some tips for user when he/she is writing a message... Thanks in advance!
0
votes
3answers
335 views

Skype integration issue

I'm new in iOS development. But anyway now I can: post private messages to my friends on Facebook and Twitter. Is there any way to post message to my skype contact's? Does skype provide any API for ...
1
vote
0answers
143 views

Using Skype4Com under IIS7

I have a problem working with Skype4Com under IIS7. The code is simple: Skype skype = new Skype(); skype.Attach(); Command cmd = new Command(); cmd.Command = "CHATMESSAGE #chatname/someid test"; ...
0
votes
0answers
327 views

Using Skype4COM to capture _ISkypeEvents

I am trying to capture the Skype events using Skype4COM api. I followed Understanding COM Events Handling documentation and tried reusing the code making changes to capture Skype events, however I ...
-6
votes
1answer
387 views

Skype application using SkypeKit SDK [closed]

I want to develop Skype app using skypeKit. How can I get skypeKit SDK, please guide me the steps to start working with skypeKit. Thanks
-1
votes
1answer
69 views

When Skype ICallChannelManagerEvents gets fired

I am working on App to App communication using skype. My Requirement is When one skype user place Call/Video Call I wanted to use application stream to send message from One App Plugged in Skype to ...
1
vote
1answer
104 views

Customizing Skype menu item

I want to add menu Item "My Setting" in Skype. As far as I know, Skpye4Com has interface to create Skype Client. We can create Skype plugin with it but we cannot customize Skype itself. Right now, I ...
0
votes
1answer
327 views

Using Skype4COM with VC++

I am trying to use Skype4COM.dll to get the list of contacts for a Skype user and to send messages to a user. I have Visual Studio 2010 and the application I am trying to develop is a C++ based one. ...
2
votes
0answers
307 views

How to get skype contact list from a browser?

I want to get my skype contact list in a browser page just like https://imo.im/ does it. How the skype api works? For me it's really confusing. As I see I need to download skype4com to make it work ...
1
vote
2answers
206 views

skype4com reset input device after playing wave

I'm using SKype4Com and it seems that whenever I play a wav file, I can't ever change back to my microphone. I literally have to end the call, and call back in order to use my mic again. Here's some ...
2
votes
0answers
194 views

Transferring Skype calls with Skype4Com - is it possible?

I am currently working on a skype plugin / application in c# which I would like to be able to transfer / forward calls to another skype address. I tried to use ICall.Transfer();, which (as i found ...
1
vote
1answer
701 views

Samples of using Skype API phone call [closed]

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 ...
0
votes
1answer
82 views

Launch skype from wp7 Application

I want to launch Skype from my windows phone 7 application, I found some methods to do that using android and iPhone but could not get any kind of help how to do it in windows phone 7, Does this ...
0
votes
0answers
347 views

Vb.net Skype4com - Get All Messages in chat by user

Lets say that i start chat with "nn1", lets say that this is the conversation between me and nn1: nn1: bro :D mynickname: :) now i want to insert this conversation into listbox by Skype4COM API. ...
3
votes
2answers
1k views

How to access skype API without wrappers

I need to write a webpart (in sharepoint 2010) which will be able to read skype chat history. To achieve this goal I have to use skype API. All tutorials that I've seen use wrappers. Question: How to ...
1
vote
3answers
361 views

C# SKYPE4COMLib Facebook

I'm making SkypeBot and I want respond also to Facebook messages. I'm using SKYPE4COMLib. But it works only for skype protocol. skype.MessageStatus += new ...
1
vote
1answer
620 views

Skype4Com how to login?

Hi i created small project using Skype4COM, and it works, but first i need to open my skype and login. My question is if this is possible to login into skype using this library ?
0
votes
1answer
255 views

CompilerParameters class skype (Skype4COM) library error

I'm writting a program with Skype API (Skype4COM) and decided to make a runtime compilation. Everything worked perfectly before I decided to use in my compilation Skype API's library. When I tried to ...
0
votes
2answers
144 views

How to make always skype detect number on my site?

Is there any way to make skype always detect numbers on my site by including any header file or something and which number format is prefered that skype detects easily...
0
votes
1answer
301 views

Skypekit C++ How to get each contact avatar?

I am new to skype development. I want to build a application that allow user to login by skype account. I can do the login with skypekit c++ and I also list all the contact name with status. But I ...
0
votes
1answer
332 views

Rank System in Skype Application

So as some of you may know, I'm currently working on a Skype "bot" sort of application. As of now i have a lot of commands implemented and it's working wonderfully. I'm just trying to figure out how I ...
6
votes
1answer
2k views

How do I send a message in a group chat in Skype with Skype4COM?

I've been trying to make a "Skype Bot" in C#. So far I've successfully been able to get it to work in one on one chats. I can't get it to work in group chats. Here's my source: using System; using ...
0
votes
1answer
903 views

Skype4COM get all recent chat's in recents

I've made a code to get all contacts, but Now I would like to get all chat groups. Please do not read anymore of this topic if you have never used the Skype4COM API. Used to collect all contacs ...
1
vote
1answer
712 views

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 ...
0
votes
1answer
162 views

How can one create and manage a phoneto: tag similar to the mailto: tag in emacs with skype?

Under Emacs 23, mailto:foo@foobar.foo is nicely underlined and launches the writing of an email when pressing enter on it. Given a system with Emacs and Skype installed, is it possible to configure ...
7
votes
1answer
3k views

C# Skype API Video Call

I was working on a security monitor application and the best approach i found was Skype. when a possible intrusion occurs the application calls a specified Skype ID which is probably my android phone ...
1
vote
1answer
1k views

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 ...
0
votes
2answers
257 views

Cannot use dll in projects other than wpf applicaion

This is really strange. If I run this in a wpf application: SKYPE4COMLib.Skype mySkype = new SKYPE4COMLib.Skype(); I get no errors. I want to run that in a asp.net application. when I do run it ...
0
votes
2answers
527 views

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: ...

1 2