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
1
vote
1 answer

Transferring files via Skype using Windows API

Is there a way I can receive and transfer a file over Skype using skype4com and the Windows API (user32.dll)? Can someone give me an example?
Alex
  • 351
  • 2
  • 6
  • 14
1
vote
0 answers

Skype Call recording

I want to record skype calls with the help of any skype client/module. I searched a lot on all forums but all solutions are outdated and mostly don't work. I want to make my code flexible in such a way that it can automatically detect ongoing call…
1
vote
0 answers

SKYPE4COMLib unable to send message to another user

We are doing windows based automation software that uses skype com library. With SKYPE4COMLib i am trying to send message to another skype user from C# application with below given code. var friendSelected = listBox1.SelectedItem; …
parth1729
  • 125
  • 11
1
vote
0 answers

Skype + C# - Invalid chat name

I am creating a C # system integrated with Skype that, when someone sends a message containing certain keywords in a specific group, my client should send a preconfigured message in that same chat. I created a method in my program that verifies the…
Ninho
  • 11
  • 1
1
vote
0 answers

Sending commands using skype4com.dll

I am writing code to automate some features of Skype for an educational institution. One approach requires sending commands using skype4com.dll through C#. I have no problem sending commands to Skype and it responds appropriately. However, I am…
1
vote
1 answer

Skype C# API Select Chat

So I know this API is quite old and very undocumented, exactly the reason that I'm making a SO question, so I wanted to know how I can select a chat in Skype using the C# Skype Desktop API, I've done some looking around but most people seem to be…
Jack Hales
  • 1,574
  • 23
  • 51
1
vote
1 answer

Run a Continuous Windows Background Task without Eating Memory

I wrote a short C# script to execute when my computer starts up. Its function is to monitor iTunes and display a fun message as my Skype status stating what artist I'm listening to. It creates an iTunesApp object and adds a listener which detects…
HaveSpacesuit
  • 3,572
  • 6
  • 40
  • 59
1
vote
1 answer

Replacement of Skype4Com

I'm trying to build a simple program (in C#) to send messages over Skype and tried to used Skype4Com. However, I found out, as here:…
1
vote
1 answer

Skype for Consumer SDK(Skype4COM) change Default Audio Output and Input C# for Bluetooth Devices

I'm providing an interface to users to easily switch between different Audio Devices in Skype. I'm able to change the Skype Audio Input & Out using Skype4COM as below: Skype _client=new Skype(); //outDevice=Headset Earphone (Plantronics C320-M)…
sebastso
  • 170
  • 1
  • 1
  • 8
1
vote
1 answer

Load COM Library into Qt

I'm able to load the Skype COM library (Skype4COM.dll) into a C++ visual studio project, and here is the code to do so: #import "C:\Program Files (x86)\Common Files\Skype\Skype4COM.dll" using namespace SKYPE4COMLib; int main(int argc, char*…
Archie Gertsman
  • 1,601
  • 2
  • 17
  • 45
1
vote
1 answer

Skype4com auto accept contact request

I'm using a VBScript to auto accept Skype incoming contact request: Public Sub Skype_UserAuthorizationRequestReceived(ByVal pUser) pUser.IsAuthorized = true End Sub This works but is there a way to prevent Skype from alerting me through the…
Roy Wang
  • 11,112
  • 2
  • 21
  • 42
1
vote
1 answer

How do I send a Skype message to multiple contacts in a list from a textbox?

I would like to know how to send a Skype message to multiple contacts at a time. For example, the textbox contains this: user1 user2 user3 Right now, to send a message to a specific contact I use: Skypattach.SendMessage("username",…
Hawkeye111
  • 37
  • 1
  • 8
1
vote
0 answers

editing the last skype message using skype4com

i was trying to make it so if someone types !changeme it will enter 1 then change to 2 if (msg.Body.Equals("!changeme")) { msg.Chat.SendMessage("1"); msg.Body =…
1
vote
1 answer

General VB.net issue with Skype API

Hello community of StackOverflow, this is my first post but I've been reading this for some time. I wouldn't ask for your help if it wasn't truly important. I have a problem that you might be able to easily solve, here it is: Public Class…
jaimehrubiks
  • 100
  • 1
  • 8
1
vote
1 answer

How to get the Skype call duration?

I am working on small call center application using PHP and MySQL. To be precise, I am doing it through the CodeIgniter framework. I am adding a link to the web page. When the user clicks on this link, it will call the number automatically through…