changing the input local programatically ?

G

Guest

in an application where a feild (for example Name or item description)is to
be entered in both ENGLISH and the Local language say ARABIC: the two input
locales are installed on my computer; changing from one input locale to the
other is done manually by pressing ALT + SHIFT? this sequence can not be sent
using the SEND KEYS method ! I tried ?? how can I do that programatically on
a GET FOCUS event??
 
C

Cor Ligthert

Ziad,

You mean one of these?
\\\set culture
Dim myCIintl As New System.Globalization.CultureInfo("nl-NL")
Application.CurrentCulture = myCIintl
'or
Thread.CurrentThread.CurrentCulture = New CultureInfo("en-US")
///

I hope this helps?

Cor
 
G

Guest

Cor Ligthert said:
Ziad,

You mean one of these?
\\\set culture
Dim myCIintl As New System.Globalization.CultureInfo("nl-NL")
Application.CurrentCulture = myCIintl
'or
Thread.CurrentThread.CurrentCulture = New CultureInfo("en-US")
///

I hope this helps?

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top