Questions tagged [input-language]

37 questions
1
vote
1 answer

automaticlly changing programming input language when Android Studio is the visual window

When developig in Android studio I often switch windows to Whatsapp, facebook and other none programming related applications / websites. When I am in these none related language I often switch to my native language for typing. When going back to…
Alon Shlider
  • 1,187
  • 1
  • 16
  • 46
1
vote
1 answer

InputLanguage doesn't work properly

I would like to automatically change the keyboard layout and I create a simple console application in Visual Basic adding the following: InputLanguage.CurrentInputLanguage = InputLanguage.FromCulture(New CultureInfo("ru")) But when I compile this…
MGMKLML
  • 39
  • 6
1
vote
0 answers

Restore keyboard that was used in specific EditText some time ago

In my application, I have the TextEdit for which I want to control virtual keyboard language (input method subtype). As far as I know, it is impossible to force the virtual keyboard to show up with the specific language selected or even get current…
1
vote
0 answers

Alt and shift keys doesn't work in RichTextBox just for the time

It's a strange case but I don't even know how to debug this problem. My program takes two input languages (English and Arabic), when I first run the program and press any English letter then press Alt+shift to switch the language it doesn't work!…
Areej Qadomi
  • 143
  • 1
  • 1
  • 14
1
vote
1 answer

How can a string that does not belongs to the input language can set a turing machine in a infinite loop?

How is it possible to set a turing machine in infinite loop by putting a string that doesn't belong to input language even if it has a reject state?
1
vote
1 answer

CurrentInputLanguage Property does not update when accessed right after language change

Please look at the code below to better understand what exactly I mean: using System; using System.Windows.Forms; namespace CurrentInputLanguageTest { static class Program { [STAThread] static void Main() { …
Vladyslav
  • 786
  • 4
  • 19
1
vote
1 answer

Application doesn't detect change of language when lost focus

I've implemented class that inherits ITfLanguageProfileNotifySink interface. It's working, I can get event when language changes, but it's only when my app is focused. What should I do to detect language changes in my app when it's not focused?
1
vote
1 answer

How does the language bar (input language) impact keyboard hooks?

I ran into a reproducible bug which doesn't really make sense to me. Hopefully someone knows more about the internals of keyboard input under Windows (I'm using Windows 7) and can point me in the right direction on how to solve it. As it stands now…
Steven Jeuris
  • 18,274
  • 9
  • 70
  • 161
1
vote
1 answer

Application not detecting input language changes via Text Service Framework DLL

OK, I have been at this for a while ... I am trying to track when user changes input languages from Language Bar. I have a Text Service DLL - modeled from MSDN and WinSDK samples - that registers fine, and I can use the interfaces…
1
vote
1 answer

Changing Keyboard Layout inside Keyboard Hook CallBack

I have a problem with changing keyboard layout inside keyboard hook. In this simple code, when pressing 'A' key, it takes a lot time, to change a language, in more complicated cases, application does wrong things.. Application works in tray,…
Michael
  • 2,356
  • 3
  • 21
  • 24
0
votes
1 answer

How to globally change the system input language in .net

I commonly switch between typing in qwerty and dvorak, and one of the biggest inconveniences in Windows is that although there is a hot key to switch between input languages, it only changes the input language for the window that has focus. I would…
JSideris
  • 5,101
  • 3
  • 32
  • 50
0
votes
1 answer

Changing the default input language in tkinter text widget

Is there any way to change the default input language in tkinter? Here's the code: from tkinter import * root = Tk() text = Text(root , width = 65 , height = 20 , font = "consolas 14") text.pack() mainloop() Here, when I type some text into the…
Lenovo 360
  • 569
  • 1
  • 7
  • 27
0
votes
1 answer

Update input language of on screen keyboard

I have an Windows Forms application written in C# .NET 5 with a webview2 control which hosts a kiosk based application which will be run full screen on a touchscreen. The application will use the on screen keyboard for user input. The application is…
gdsl88
  • 11
  • 2
0
votes
1 answer

Sending WM_INPUTLANGCHANGEREQUEST to some applications hangs them

I am writing custom keyboard switcher and found, that some applications hang with it. First I thought, that there is an endless loop in my app or something like this, but the found, that even sending a message with 3rd party tool can hang the…
Dims
  • 47,675
  • 117
  • 331
  • 600
0
votes
1 answer

How does Default Input Language Switcher work in Windows?

Default input languages switcher listens for key strokes and changes input language of any application. How does it happen? Does it use DLL injection as described in comments here https://stackoverflow.com/a/1261532/258483 or there are any other…
Dims
  • 47,675
  • 117
  • 331
  • 600