views:

267

answers:

2

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

Any sugeestion 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;

        }
+1  A: 

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

logicnp
A: 

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

mark both V-s!

DxCK