02-12-2013 10:58 AM
Hye,
I'm trying to make Windows on-screen keyboard open right after any text box is getting focus,
right now, as default, the user must click the text box twice to activate the keyboard which is a problem, becasue it's on a tablet and not always the 2nd time is in the box and tablet is not real accurate and so on..
so, I want the virtual keyboard to be visable right after the first click,
is there another way or calling OSK.EXE everytime the user click on text-box is the only way?
thanks is advance,
Aj
02-12-2013 11:14 AM
In the control callback you could use the event EVENT_GOT_FOCUS to call LaunchExecutable ();
02-12-2013 12:20 PM
thanks,
but that was my question, if that the only solotion or is there another way to do so?
appreciate the quick response
Aj
02-12-2013 12:52 PM
Well, you wrote that "right now, as default, the user must click the text box twice to activate the keyboard which is a problem"...
So I suggested to use EVENT_GOT_FOCUS instead because this event can be triggered without clicking by using the TAB key or Shift-TAB.
02-12-2013 02:07 PM
you defently right, that soilve my problem 😄 no question about it,
i just thought there is a way (not necessarily as code, but perhaps a setting in windows or somthing like that :D)
thatnks again 🙂
04-02-2015 05:04 AM
Hello,
after using LaunchExecutable ("c:\\Windows\\SysWOW64\\osk.exe");
I am getting error like "Could not start On-Screen keyboard"
Thanks.