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