Identify skype instances using SKYPE4COM.dll library

Asked

Viewed 32 times

1

I’m working on a project C# WindowsForms and using the library SKYPE4COM.dll.

I made an application that looks for an instance of skype running, the problem is that when assigning the instance as code below it picks the first one that logged in, and I use 3 Skypes on my computer. I would like to search by skype name.

Is there any way to perform the identification of the current user logged in to skype using this library ?

If it is not possible to identify the user from the library SKYPE4COM.dll there’s some other way to do it ?

Code :

private Skype skypeId;
 
private void Form1_Load(object sender, EventArgs e)
{            
    skypeId = new Skype();
}
No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.