I'm working on a C#
WindowsForms
project and using the SKYPE4COM.dll
library.
I made an application that looks for a skype instance running, the problem is that when assigning the instance as code below it takes the first one that logged in, being that I use 3 skypes on my computer. I would like to search by skype name.
Is there any way to perform the current user ID logged in to Skype using this library?
If it is not possible to identify the user through the SKYPE4COM.dll
library, is there any other way to do this?
Code :
private Skype skypeId;
private void Form1_Load(object sender, EventArgs e)
{
skypeId = new Skype();
}