Hi All,
Is there any solution to display western digital number in Controls (TextBox and Label, etc.) in Arabic Culture and Arabic Format of OS "Regionl and Language"??
As the number would be converted as Hindic number automatically.
Formats setting is "Arabic (Egypt)" in OS“Control Panel – Region and language”.
Thread culture settings in program:
CultureInfo arEG = CultureInfo.CreateSpecificCulture("ar-EG");
Thread.CurrentThread.CurrentCulture = arEG;
Thread.CurrentThread.CurrentUICulture = arEG;
The values of Control for test:
label1.Text ="8888";
textBox1.Text ="11/11/1440";
The result is displaying the hindic number...
How can I configure them and dispay the western number in this Arabic envinronment??
Regards,
James
James