Genau, weil standartmäßig ist WM_GESUTRE aktiv. Das mache ich schon im onCreate vom Form.
Würde ich das Window/
Handle nicht für Touch registrieren, dann würde ich auch keine WM_TOUCH messages bekommen.
Code:
procedure TForm1.FormCreate(Sender: TObject);
begin
//ShowMessage(IntToStr(GetSystemMetrics(SM_DIGITIZER)));
RegisterTouchWindow(Form1.Handle, 0);
Application.OnMessage:= AppMessage;
end;