Click here to Skip to main content
Click here to Skip to main content

Multilingual TextBox

By , 7 Jul 2005
 

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
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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionMultilingual TextBoxmemberssvinodh3-Apr-08 19:42 
GeneralPlease helpmembersreejith ss nair18-Sep-05 21:28 
GeneralMalayalam Key mappingmemberVeeran Kutty9-Aug-05 5:41 
GeneralRe: Malayalam Key mappingmembermahesh.mishra22-Sep-05 0:24 

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

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