I\'ve built a custom control that I\'m trying to send input to. It will accept mouse input and report MouseDown, MouseMove and MouseUp correctly, but for whatever reason, i
Do you have WS_TABSTOP
set? You don't have input focus without that, I believe. But this is based on a recollection from nearly 10 years ago, when I was writing my own syntax-highlighting code editor, for which I have long since lost the source.
{TWinControl.}TabStop := True;
ought to do. A quick test app with a do-nothing component derived from TWinControl
and displaying a dialog for key events seems to show that it makes all the difference.