Can this be done programmatically in a VB application (VS2008 Express
edition) on a form using two textboxes where I should like one of them
to present the input according to the greek alphabeth and the second
one presenting the input in latin letters?
Can the same be accomplished direct into i table in an Accessdatabase
with a "greek" and and "english" column?
I know it can be done by using the keyboard but I should like to have
it done automatically in my small application
Any hints
I know how to set the local settings of an application, not of a complete
computer.
This namespace is for it.
http://msdn2.microsoft.com/nl-nl/library/system.globalization(en-us).aspx
Cor
"lexj" <traml...@hotmail.com> schreef in bericht
news:25acf2ad-d744-47e7...@x69g2000hsx.googlegroups.com...
On 23 Dec, 09:24, "Cor Ligthert[MVP]" <notmyfirstn...@planet.nl>
wrote:
> Lexj,
>
> I know how to set the local settings of an application, not of a complete
> computer.
>
> This namespace is for it.
>
> http://msdn2.microsoft.com/nl-nl/library/system.globalization(en-us)....
>
> Cor
>
> "lexj" <tramlin...@hotmail.com> schreef in berichtnews:25acf2ad-d744-47e7...@x69g2000hsx.googlegroups.com...
Dim x As New System.Globalization.CultureInfo("el-GR") ' for Greek.
InputLanguage.CurrentInputLanguage =
InputLanguage.FromCulture(x)
Read here about the InputLanguage Class
http://msdn2.microsoft.com/en-us/library/system.windows.forms.inputlanguage(VS.71).aspx
".NET Framework Class Library
InputLanguage Class
Provides methods and fields to manage the input language. This class
cannot be inherited.
For a list of all members of this type, see InputLanguage Members.
System.Object
System.Windows.Forms.InputLanguage"