Tagged Questions
The osk tag has no wiki summary.
8
votes
2answers
4k views
Unable to launch onscreen keyboard (osk.exe) from a 32-bit process on Win7 x64
90% of the time I am unable to launch osk.exe from a 32bit process on Win7 x64. Originally the code was just using:
Process.Launch("osk.exe");
Which won't work on x64 because of the directory ...
5
votes
1answer
209 views
Looking for a localizable WPF Keyboard control for Kiosk
I'm working on a project that is using WPF on an XPe box that will be deployed as a kiosk application (touchscreen only, no keyboard/mouse), and we have the need for an onscreen keyboard. We can't ...
3
votes
1answer
803 views
How can i programmatically manipulate the Windows 7 on-screen keyboard osk: Move, Resize, Remove Titlebar/Caption
I'm working on a WPF app where i want to display the built-in windows 7 onscreen keyboard in a 'always there' manner. So i want to:
Move it to a particular location
Set it to a certain width and ...
3
votes
2answers
672 views
Launch x64 Windows application in C# while the project is set to x86
Hi all
I'm trying to launch the osk.exe and I keep getting "Could not start osk" message.
The problem is that my project is set to x86 (i'm using a ms access database).
If I switch to x64 or Any CPU ...
2
votes
1answer
93 views
Virtual OnScreenKeyboard in Silverlight
I'm trying to build an OnScreenKeyboard to fill Textboxes in a Silverlight Web Application. The Keyboard has to be multilingual so that when I have set the language to chinese and enter a small letter ...
2
votes
3answers
6k views
On-screen keyboard for Windows apps (C++/C#) with touch-screen capability
Going to make an applications wich will be used on a device without a physical keyboard
Looking for best practices for touch-screen applications.
Which commercial/free on-screen keyboard or on-screen ...
1
vote
3answers
149 views
Open the 64 bits windows's virtual keyboard using a 32 bit JRE
I need to open the Windows's virtual keyboard from my application, which will be deployed using Eclipse RCP on the windows 32 bit platform (i.e. win32 JRE).
Following the answers to the post open the ...
1
vote
1answer
224 views
How to make the Windows OSK open when a TextBox gets focus, instead of requiring users to tap a keyboard icon?
We are working on a WPF application in .NET 4 that will be used with a touch screen. We are trying to use the built-in Windows OSK for our input, and the last remaining issue is to get the keyboard ...
1
vote
1answer
466 views
Finding the class name of the On-Screen Keyboard?
I am attempting to use this code sample to control the Windows XP On-Screen Keyboard (OSK.exe) from a C# (.NET 3.5) Winforms application:
[DllImport("User32.dll")]public static extern Int32 ...
0
votes
0answers
39 views
Sendkeys sends no or multiple strings
I made a keyboard in Windows.Forms with many Buttons and the content of them are the different characters of the Alphabet like a real keyboard.
Now the problem is when I am using the Keyboard in ...
0
votes
1answer
38 views
Opening a .exe with Silverlight
Im trying to get silverlight to open the OnscreenKeyboard. I wrote a code but it is throwing a System.InvalidOperationException.
try
{
HtmlPage.Window.Eval("var myshell = new ...
0
votes
2answers
32 views
Create a .dll from a Silverlight Web Application
I programmed a Virtual Keyboard (On Screen Keyboard) as a Silverlight Web Application, now I want to use this Keyboard in an other Silverlight Application (call the Keyboard when clicking a Textbox). ...
0
votes
0answers
499 views
SetWindowPos not working for Window 7 On Screen Keyboard .Net 3.5 C#
For whatever reason, SetWindowsPos is not working specifically for the windows on-screen keyboard (osk). I've tried every example in every combination that i can think of. I've even tried looping ...