Registriert seit: 26. Jan 2011
339 Beiträge
Delphi 12 Athens
|
AW: Windows Tastatur
10. Apr 2019, 17:06
Code:
procedure ShowWinKeyboard;
begin
ShellExecute(0, 'open', 'C:\Program Files\Common Files\Microsoft Shared\Ink\TabTip.exe', nil, nil, SW_SHOWNA);
end;
procedure CloseWinKeyboard;
var KbWnd: THandle;
begin
KbWnd:=FindWindow('IPTip_Main_Window', nil);
if KbWnd>0 then
PostMessage(KbWnd, WM_SYSCOMMAND, SC_CLOSE, 0);
end;
|
|
Zitat
|