473,387 Members | 1,766 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Change language when in an Arabic Edit Box

Hi

I am doing a bilingual .NET application for
English/Arabic. On a web form, I have some edit boxes for
data entry in Arabic and some for entry in English. Right
now the user has to change his keyboard language by
pressing ALT+SHIFT (or by changing the language manually
elsewhere) each time he wants to shift from one language
to another.

Is there anyway I can automatically change the language
when the user moves from an English Edit box to an Arabic
Entry edit box?

Thanks...
Nov 17 '05 #1
6 3065
I don't think so, this is purely client side issue, if they want they can
enter their input using Right Alt + the keycode of the characters they want
to type in. Technically you could write an ActiveX control that would do
this but I don't think your users would welcome you changing their input
locale.

Jerry

"Michelle Stone" <mi********@yahoo.com> wrote in message
news:00****************************@phx.gbl...
Hi

I am doing a bilingual .NET application for
English/Arabic. On a web form, I have some edit boxes for
data entry in Arabic and some for entry in English. Right
now the user has to change his keyboard language by
pressing ALT+SHIFT (or by changing the language manually
elsewhere) each time he wants to shift from one language
to another.

Is there anyway I can automatically change the language
when the user moves from an English Edit box to an Arabic
Entry edit box?

Thanks...

Nov 17 '05 #2
I don't think so, this is purely client side issue, if they want they can
enter their input using Right Alt + the keycode of the characters they want
to type in. Technically you could write an ActiveX control that would do
this but I don't think your users would welcome you changing their input
locale.

Jerry

"Michelle Stone" <mi********@yahoo.com> wrote in message
news:00****************************@phx.gbl...
Hi

I am doing a bilingual .NET application for
English/Arabic. On a web form, I have some edit boxes for
data entry in Arabic and some for entry in English. Right
now the user has to change his keyboard language by
pressing ALT+SHIFT (or by changing the language manually
elsewhere) each time he wants to shift from one language
to another.

Is there anyway I can automatically change the language
when the user moves from an English Edit box to an Arabic
Entry edit box?

Thanks...

Nov 17 '05 #3
Actually my customer asked me whether this can be done.
On an employee-registration screen, he has to enter the
name and address of an employee in both English and
Arabic. This guy types without looking at the screen
(only at keyboard) and it was only after typing both
english and arabic that he realized that he forgot to
press ALT+SHIFT to switch language, resulting in garbage
english characters in the arabic text box!

he immediately told me to make this switch automatic, and
i said it will be done.

can anyone give me any pointers to this? thanks
-----Original Message-----
I don't think so, this is purely client side issue, if they want they canenter their input using Right Alt + the keycode of the characters they wantto type in. Technically you could write an ActiveX control that would dothis but I don't think your users would welcome you changing their inputlocale.

Jerry

"Michelle Stone" <mi********@yahoo.com> wrote in message
news:00****************************@phx.gbl...
Hi

I am doing a bilingual .NET application for
English/Arabic. On a web form, I have some edit boxes for data entry in Arabic and some for entry in English. Right now the user has to change his keyboard language by
pressing ALT+SHIFT (or by changing the language manually elsewhere) each time he wants to shift from one language to another.

Is there anyway I can automatically change the language
when the user moves from an English Edit box to an Arabic Entry edit box?

Thanks...

.

Nov 17 '05 #4
Actually my customer asked me whether this can be done.
On an employee-registration screen, he has to enter the
name and address of an employee in both English and
Arabic. This guy types without looking at the screen
(only at keyboard) and it was only after typing both
english and arabic that he realized that he forgot to
press ALT+SHIFT to switch language, resulting in garbage
english characters in the arabic text box!

he immediately told me to make this switch automatic, and
i said it will be done.

can anyone give me any pointers to this? thanks
-----Original Message-----
I don't think so, this is purely client side issue, if they want they canenter their input using Right Alt + the keycode of the characters they wantto type in. Technically you could write an ActiveX control that would dothis but I don't think your users would welcome you changing their inputlocale.

Jerry

"Michelle Stone" <mi********@yahoo.com> wrote in message
news:00****************************@phx.gbl...
Hi

I am doing a bilingual .NET application for
English/Arabic. On a web form, I have some edit boxes for data entry in Arabic and some for entry in English. Right now the user has to change his keyboard language by
pressing ALT+SHIFT (or by changing the language manually elsewhere) each time he wants to shift from one language to another.

Is there anyway I can automatically change the language
when the user moves from an English Edit box to an Arabic Entry edit box?

Thanks...

.

Nov 17 '05 #5
It can't be done with HTML and scripting. You would either have to code your
own browser or somehow get Win32 code to his machine to do this (such as an
ActiveX control).

Jerry

"Michelle Stone" <mi********@yahoo.com> wrote in message
news:07****************************@phx.gbl...
Actually my customer asked me whether this can be done.
On an employee-registration screen, he has to enter the
name and address of an employee in both English and
Arabic. This guy types without looking at the screen
(only at keyboard) and it was only after typing both
english and arabic that he realized that he forgot to
press ALT+SHIFT to switch language, resulting in garbage
english characters in the arabic text box!

he immediately told me to make this switch automatic, and
i said it will be done.

can anyone give me any pointers to this? thanks
-----Original Message-----
I don't think so, this is purely client side issue, if

they want they can
enter their input using Right Alt + the keycode of the

characters they want
to type in. Technically you could write an ActiveX

control that would do
this but I don't think your users would welcome you

changing their input
locale.

Jerry

"Michelle Stone" <mi********@yahoo.com> wrote in message
news:00****************************@phx.gbl...
Hi

I am doing a bilingual .NET application for
English/Arabic. On a web form, I have some edit boxes for data entry in Arabic and some for entry in English. Right now the user has to change his keyboard language by
pressing ALT+SHIFT (or by changing the language manually elsewhere) each time he wants to shift from one language to another.

Is there anyway I can automatically change the language
when the user moves from an English Edit box to an Arabic Entry edit box?

Thanks...

.

Nov 17 '05 #6
It can't be done with HTML and scripting. You would either have to code your
own browser or somehow get Win32 code to his machine to do this (such as an
ActiveX control).

Jerry

"Michelle Stone" <mi********@yahoo.com> wrote in message
news:07****************************@phx.gbl...
Actually my customer asked me whether this can be done.
On an employee-registration screen, he has to enter the
name and address of an employee in both English and
Arabic. This guy types without looking at the screen
(only at keyboard) and it was only after typing both
english and arabic that he realized that he forgot to
press ALT+SHIFT to switch language, resulting in garbage
english characters in the arabic text box!

he immediately told me to make this switch automatic, and
i said it will be done.

can anyone give me any pointers to this? thanks
-----Original Message-----
I don't think so, this is purely client side issue, if

they want they can
enter their input using Right Alt + the keycode of the

characters they want
to type in. Technically you could write an ActiveX

control that would do
this but I don't think your users would welcome you

changing their input
locale.

Jerry

"Michelle Stone" <mi********@yahoo.com> wrote in message
news:00****************************@phx.gbl...
Hi

I am doing a bilingual .NET application for
English/Arabic. On a web form, I have some edit boxes for data entry in Arabic and some for entry in English. Right now the user has to change his keyboard language by
pressing ALT+SHIFT (or by changing the language manually elsewhere) each time he wants to shift from one language to another.

Is there anyway I can automatically change the language
when the user moves from an English Edit box to an Arabic Entry edit box?

Thanks...

.

Nov 17 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Brahim Machkour | last post by:
Hello, I'm using JAXB to export/import data from/to a DB through XML files. Everything is working well. I would like also to be able to edit the file using an editor, typically XMLSpy....
1
by: Dharmendra Singh | last post by:
Hi I'm using .Net(C#) and working on the form(Screen) which have text boxes for both arabic and english data to store. So i want to change the language at run time from arabic to english and...
2
by: eikel | last post by:
Hi I am a newbie c# programmer, I would like to know how to make a function that switches between languages in windows XP/2000. The languages can be set manually in the language bar. Thanks for...
0
by: bvcbb | last post by:
Dear all I am supposed to develop a world ready application in C# 2003 (which will run in xp) which should aupport Arabic & Hebrew also. My doubts(Fears) are: 1. Do i have to create all the...
0
by: Michelle Stone | last post by:
Hi I am doing a bilingual .NET application for English/Arabic. On a web form, I have some edit boxes for data entry in Arabic and some for entry in English. Right now the user has to change his...
2
by: Fahad | last post by:
I have a web forms that I insert data in database using arabic and Farsi language. The problem is when I insert a record, A record is added but I get blank fields in the columns. When I insert a...
0
by: PHPBob | last post by:
Hello, I am trying to run Languid language guesser - see http://languid.cantbedone.org/ I am not a perl programmer, and I have no idea how to get this script running. I am running perl scripts...
0
by: shizah | last post by:
First of all thanks alot for ur response. Let me clear my point again to u so that u can suggest me a better advice. Well sir u r very much right in this contrast that it can be implemented in my...
2
JustRun
by: JustRun | last post by:
Hi, I'm developing a web application using ASP.NET2.0 with C#, I have tried to use custom validation controls to validate my forms, it worked very well in the English language , but when i test it...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.