I have a problem with my c# code I am trying to change the group chat topic but it does not work
private void button10_Click(object sender, EventArgs e)
{
Skype skype = new Skype();
skype.Message.Chat.SendMessage("/topic " + textBox9.Text);
}
and when I press the button it says unknown message
You have to attach skype with skype.attach(); You should make 1 global skype object and on your form load you should attach skype.