Touch Screen

Is Any way to Show like Virtual KeyBoard with Xojo or a Class Virtual KeyBoard

On what device?

Windows 7 32bits or 64bits

You mean like Start -> All Programs -> Accessories -> On-Screen Keyboard ?

If so you can sh.execute(“osk.exe”).

that works but manager is hard like show and close the VirtualKeyboard

You could develop one using canvas’ :slight_smile: Use windows API to “SetTopMost” in the WindowStyle to keep it ontop of all windows.

Could even use overlays and opacity to put an almost invisible keyboard over the screen and still be able to touch and access elements under it…

I have no idea how that works.
i now about the API in VB but no On XOJO

You could create a keyboard with a .show() .hide() methods and define a “OnKeyPressed(key As String)” event for example. When needed you could invoke it and process its keystrokes. If the intention is using it “in” your app.

[quote=119771:@Alexis Colon Lugo]I have no idea how that works.
i now about the API in VB but no On XOJO[/quote]

The on-screen virtual keyboard in Windows 8 is only available in the new API to Windows Store applications, not desktop applications.

Your best bet is to create one as a window where BevelButtons mimic the keys, which window you display and hide through code in response to user actions. It is fairly easy to mimic the “real” thing http://msdn.microsoft.com/en-us/library/windows/apps/hh465404.aspx#invocation_and_dismissal_logic

See for a representation of the Touch keyboard :
http://msdn.microsoft.com/en-us/library/windows/apps/dn263203.aspx
and
https://www.google.com/search?biw=1388&bih=653&tbm=isch&sa=1&q=touch+keyboard+windows+8&oq=touch+keyboard+windows+8&gs_l=img.3..0j0i24l9.15589.17454.0.21637.9.3.0.6.6.0.254.505.2-2.2.0....0...1c.1.51.img..1.8.528.y9KBRIlLW44

Yes Rick

Just to get the Idea: https://drive.google.com/file/d/0B6w6JZen_vW2MVFZd2V4bEFZaVk/edit?usp=sharing