Skip to content Skip to sidebar Skip to footer

Python Win32api.LoadKeyboardLayout(), Doesnt Change Language In IDLE Shell?

Can someone help me out please...I'm trying to start my first programming project. It will be implemented in python. I need to have a textbox (which i am using wxpython for). If t

Solution 1:

  1. Keyboard layout setting in Windows is per-process (and inherited from the parent process)
  2. IDLE runs your Python script in a background process separate from its GUI

So you have successfully changed the keyboard layout of the background Python process that is running your script, but not of IDLE's GUI.


Post a Comment for "Python Win32api.LoadKeyboardLayout(), Doesnt Change Language In IDLE Shell?"