Custom alphanumeric keyboard for pos system

Win10 & Office 2007 32bit

I get an on screen keyboard with Form 1 and another keyboard with Form 2

See attached pics.

Gasman
You got exactly what was intended but both screenshots are for form 2
 
Gasman
You got exactly what was intended but both screenshots are for form 2

Maybe its anything about references???
No Keyboards....
 

Attachments

  • 1.jpg
    1.jpg
    80.4 KB · Views: 132
  • 2.JPG
    2.JPG
    99.4 KB · Views: 137

Attachments

  • references.PNG
    references.PNG
    24.5 KB · Views: 116
Just the standard 4 references.
Perhaps your Windows settings?
 
I don't get OSK appearing using the command button on the form. Must be something external to Access.
I have OSK.exe in C:\windows\system32. It opens if I double click on it. However, within Access, it does not appear visible ie
Code:
? Dir("C:\windows\system32\osk.exe") & "XXX"
XXX
or in a loop
Code:
 str = Dir("C:\windows\system32\o*.exe")
   Do While str <> ""
      Debug.Print str
      str = Dir
   Loop
I get
Code:
odbcad32.exe
odbcconf.exe
OneDriveSetup.exe
openfiles.exe
OpenWith.exe
OposHost.exe
 
Have a look in task manager and look for the following in Apps or Background processes:
- accessibility onscreen keyboard
- touch keyboard and handwriting panel
If you find one or both items, select them and click End Task.
Then try the example app again.

Cronk
I've also used this for a couple years in 64-bit Windows with 64-bit Access
If using 32-bit Access in 64-bit Windows, is there a copy of osk.exe in the Windows WOW64 folder?

The tablet keyboard is far better IMHO anyway.
 

Users who are viewing this thread

Back
Top Bottom