Resolved Prevent a language's words except English

Socarsky

Well-known member
Joined
Dec 27, 2012
Messages
173
Location
Jakarta/Indonesia
Programming Experience
Beginner
How can I prevent a language's words except English while typing in a context?
I want to force clients not to type non English words in a context.
 
Last edited:
You would need to employ a spell-checker. It's possible to use the Microsoft Office spell-checker if you know it will be installed. Otherwise, I know that there's at least one free, third-party component out there so try searching.
 
Do I have to intall that checker application to each client here to run the program? Is there any other way to do that?
 
Well, do you think that the application is going to be able to magically communicate with the spell checker installed on your own computer? If the spelling needs to be checked on a user's machine when they type into your application then either the spell checker has to be present on their machine or else the app would have to invoke a web service call to a server that had the spell checker installed. If you're happy to create such a web service on such a server then by all means do so, but it's probably not practical.
 

Latest posts

Back
Top