Hi, I'm looking for a solution like "Live Chat" using Skype. I've implement the Skype4COM in my project and code it as below Skype skype = new Skype(); if (skype.Client.IsRunning) { try { User user = new User(); user.Handle = TextBox1.Text; skype.Friends.Add(user); IChat chat = skype...