Question realtime english to other language transliterate

aksl

Member
Joined
Jan 31, 2014
Messages
11
Programming Experience
Beginner
I need a vb.net code help as follows.
my form has two text boxes named as Textbox1 & Textbox2. no buttons.

when i type charactor "ga" in english in text box 1
should be display sinhala charactor "" in text box2 (it means same sound in sinhala,it's my language)

when i type charactor "kra" in english in text box 1
should be display sinhala charactor "ක්*ර" in text box2

when i type word "gasa" in english letters in text box 1
should be display sinhala charactor "ගස" in text box2(it means if textbox1 has two characters,textbox2 should show two charactors)

(sinhala is mothertounge of srilankans)

displaying should be in realtime, I mean without button pressing.
This is called "transliterate"
dears! help me please !
 
Well if you know the characters and their corresponding english syllables, you can make a lookup table. Then it's just a matter of working whatever you type in textbox1 through the table to output what you need in textbox2, via the textbox1's TextChanged event for example.
 
Well if you know the characters and their corresponding english syllables, you can make a lookup table. Then it's just a matter of working whatever you type in textbox1 through the table to output what you need in textbox2, via the textbox1's TextChanged event for example.

Really thanks for responding me quickly.

I know the characters and their corresponding english syllables. please tell me an example code or further detailed informations about it!. I am a begginer of vb.net. how can i make a lookup table & data bindings.
 
Back
Top