Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Building a Language Translation Bot using Skype and C#

0.00/5 (No votes)
7 Feb 2013 1  
How to build a language translation bot using Skype and C#

In Google talk, there was some bot service available which will help to translate from one language to another. You can implement similar service using Skype with the help of Skype4COM.dll. In this implementation for language translation, the Bing soap API is used.

Skype4COM is a Windows based COM DLL which acts as a shim between the text based Skype Desktop API and 3rd party programs / applications. The Skype4COM.dll and developer documentation is available to download from here.

You need download the Skype4COM.dll and you need to register it in the system to use it. You can register any COM DLL using command regsvr32 from command prompt. You need administrator privilege to do this. If you didn’t register it properly, you may get some COMException while running the applications.

You can add reference of Skype4COM.dll from Add Reference > COM tab.

And here is the implementation:

private Skype _skype;
public frmSkypeBot()
{
    InitializeComponent();

    _skype = new Skype();
    _skype.Attach(8, false);
    _skype.MessageStatus += SkypeMessageStatus;
}

private void SkypeMessageStatus(ChatMessage pMessage, 
    TChatMessageStatus Status)
{
    try
    {
        if (Status == TChatMessageStatus.cmsRead)
        {
            _skype.SendMessage(pMessage.Sender.Handle, 
                Translate(pMessage.Body));
        }
    }
    catch (Exception ex)
    {
        Log(ex);
    }
}

While launching the application, you will get a prompt like this:

Skype - Application permission dialog

You need to click on the allow access button, otherwise the application won’t work.

Skype bot running on my system.

Skype bot - English to Hindi

The Translate method translates from English to Hindi using Bing API. Bing API doesn’t support translation to Malayalam from English. So Hindi language is used.

Happy programming!

Related Content

  1. How to use TaskDialog API in C#
  2. How to turn off your monitor when you lock your machine
  3. Raven DB – Introduction
  4. Drive combo box in C#
  5. How to get the current battery level in C#

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here