Click here to Skip to main content
Licence 
First Posted 7 Jul 2005
Views 33,836
Bookmarked 17 times

Multilingual TextBox

By | 7 Jul 2005 | Article
This textbox enables us to write text in diffrent languages. It supports Unicode text.

Sample Image

Introduction

This is a kind of textbox with multilingual support and it is Unicode compliant. In order to display text in different languages, we must have language.xml files in the bin\language directory for each language, which is kind of the key mapping and it is very easy to prepare the XML files.

Background

In my project, I was in the need of a textbox in which we can have text of different languages with out setting the font each time?

Using the code

In the languageTextBox class file, there is a method ProcessDialogKey(Keys keyData), I am overriding that method in order to trap the keyboard interrupt and to modify the display of the interrupt.

protected override bool ProcessDialogKey(Keys keyData)
{
    ..
    ..
    ..
    _reader=new XmlTextReader("..\\language\\"+lan_name+".xml");
    while(_reader.Read())
    {
        if(_reader.Name ==keyData.ToString().Replace(",","").Replace(" ",""))
        {
            valid=true;
            break;
        }
        _reader.Read();
    }
    ..
    ..

In order to map the keys, I am reading configuration data from an XML file. If it does not find the particular language.xml in its bin\language directory, it works for English as default. <_reader> is the variable to read from the XML file: _reader = new XmlTextReader("..\\language\\"+lan_name+".xml").

Points of Interest

During the coding of this function I realized that we could trap any interrupt generated by the keyboard. An interesting feature of this is it just needs to compile once. That is for different languages, we just need to provide the XML of that language and it works for that language. All the glyphs related matter is taken care of by the Unicode font. In this control, I have used Arial Unicode MS true type.

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

About the Author

mahesh.mishra

Web Developer

India India

Member

i am mahesh mishra working with IIT Kanpur as a project associate.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionMultilingual TextBox Pinmemberssvinodh19:42 3 Apr '08  
GeneralPlease help Pinmembersreejith ss nair21:28 18 Sep '05  
GeneralMalayalam Key mapping PinmemberVeeran Kutty5:41 9 Aug '05  
GeneralRe: Malayalam Key mapping Pinmembermahesh.mishra0:24 22 Sep '05  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 8 Jul 2005
Article Copyright 2005 by mahesh.mishra
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid