VB.NET Keyboard windows 10 (TabTip.exe) can not be seen

0

I am invoking the Windows 10 keyboard, in a windows forms application, but this one appears in the taeas panel, is not visible on the screen. Here I leave the code of how I invoke it. Any ideas?

    Dim TabTip = "C:\Program Files\Common Files\Microsoft Shared\ink\TabTip.exe"

    Try
        If IO.File.Exists(TabTip) Then
            Using proces = New Process()
                proces.StartInfo.FileName = TabTip

                proces.Start()
            End Using
        Else
            Log("El teclado no se encuentra en: " & TabTip)
        End If
    Catch ex As Exception
        Log("Error al abrir el teclado.", ex)
    End Try
    
asked by Joseba Rodríguez 13.03.2018 в 12:32
source

1 answer

0

You can use this in an event:

Process.Start("osk.exe")

With that I worked ok.

Slds!

    
answered by 28.05.2018 в 16:10