TTouchKeyboardsend keys to the current management focus, so if you have TEdita focus , the TEdit get the key ...
You can create a form containing TTouchKeyboardand add this procedure:
protected
procedure CreateParams(var Params: TCreateParams); override;
...
procedure TForm1.CreateParams(var Params: TCreateParams);
begin
inherited CreateParams(Params);
with Params do
begin
ExStyle := ExStyle or WS_EX_NOACTIVATE;
WndParent := GetDesktopwindow;
end;
end;
... . ( , : -)