Click here to Skip to main content
15,887,027 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
up vote-1down votefavorite




I am developing a C# application using SKYPE4COMLib and it is working fine for Call/Text messages.

I would like to add the screen sharing functionality to my application, but I am unsure how to do so. Can someone help me please?

My Code:
C#
private void Form1_Load(object sender, EventArgs e)
{
    skype = new Skype();
    // Use skype protocol version 7 
    skype.Attach(7, false); 

    skype.PlaceCall("Will", "", "", "");
    skype.CallStatus +=new _ISkypeEvents_CallStatusEventHandler(skype_CallStatus);
}

void skype_CallStatus(Call pCall, TCallStatus Status)
{
    if (Status == TCallStatus.clsRinging)
    {
        skype.SendMessage("Will", "screenbounds(200,300)");
    }
}
Posted
Updated 16-Oct-16 2:26am
v2

I think this[^] article can help you.

It seems screen sharing is not covered by the API, but the article shows one possible solution, although I'm not sure it's appropriate to your needs.

Good luck!
 
Share this answer
 
I found that Skype Desktop API does not support this feature
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900