Open on-screen keyboard on tablet with Windows 10

1

I am developing an application Windows forms with visual basic .

This application will work on a tablet with Windows 10 , the problem is that when I press on textbox the touch keyboard is not displayed, it only happens when they are combobox or richtextbox , I've been looking for information about it but I have not found anything.

    
asked by NecroAny 06.07.2018 в 19:24
source

1 answer

1

You could open the process

Imports System.IO



            Dim folderPath As String = "C:\Program Files\Common Files\Microsoft Shared\ink"
            Dim keyBPath As String = Path.Combine(folderPath, "TabTip.exe")
            Process.Start(keyBPath)
    
answered by 06.07.2018 в 19:36