Sandhurst
Sandhurst

Reputation: 21

Multilingual TextBox-Winforms C#

I need to display Korean and Arabic characters in TextBox. Following code is working fine for Arabic but not for Korean.

Any suggestion will be helpful?

private void PrintArabicAndKorean()
{
     char aleph;
     char ra;
     char dal;
     char wao;
     char korean;
     string word;

     aleph = '\u0627';
     ra = '\u0631';
     dal = '\u062F';
     wao = '\u0648';
     korean ='\uAE00';


     word = korean.ToString()+ aleph.ToString() + ra.ToString() + dal.ToString() + wao.ToString();
     multiLingualTextBoxs1.Text = word;
 }

Upvotes: 1

Views: 969

Answers (2)

DxCK
DxCK

Reputation: 4552

Try to mark the "Install files for East Asian languages". (Control Panel --> Regional and Language Options --> Languages)

mark both V-s!
(source: pptfaq.com)

Upvotes: 0

logicnp
logicnp

Reputation: 5836

What font are you using? Does the font support the Korean code points?

Upvotes: 1

Related Questions