Hi
i am tring to work with win8 pro tablet.
I am using the:
ShellExecute(, "open", "TabTip.Exe")
to show the kb when i need it (just before get)
but at the end of get i am not able to close it.
Any help ?
tks
romeo/ziongoni
Hi
i am tring to work with win8 pro tablet.
I am using the:
ShellExecute(, "open", "TabTip.Exe")
to show the kb when i need it (just before get)
but at the end of get i am not able to close it.
Any help ?
tks
romeo/ziongoni
SendMessage( FindWindow( 0, "tabtip" ), WM_CLOSE ) // or Name of program( in window ).
Best regards,
it does not work.
I need something like dos command: TASKKILL ..... to end the tabtip.exe execution process
tks aany
//-------------------------------------------------------------------------//
// For Windows 8.
FUNCTION ShowInputPanel()
*
ShellExecute(, "open", "tabtip.exe")
*
RETURN NIL
*
//-------------------------------------------------------------------------//
// For Windows 8.
FUNCTION HideInputPanel()
Local hWndInputPanel
*
hWndInputPanel:= FindWindow("IPTip_Main_Window")
PostMessage(hWndInputPanel, WM_SYSCOMMAND, SC_CLOSE, 0)
* (¿ SysRefresh() ? )
RETURN NILi get error with:
PostMessage(hWndInputPanel, WM_SYSCOMMAND, SC_CLOSE, 0)
what are WM_SYSCOMMAND and SC_CLOSE ?
And how can i detect if the kb is loaded ?
Hi
function IsKeyboardVisible()
return FindWindow( "IPTip_Main_Window" ) != 0A ti siempre, ¡ faltarÃa más ! ![]()
Jeff,
It uses the same source code as Antonio Mart explained, thanks anyhow ![]()
many thanks all