Iam working on a new Component , and i want to handle all parent messages .
Type
TMyComponent= class(TComponent)
//Bla bla
/..
//.
published
property Parent: TWinControl read FParent write SetParent;
end;
i want to get access to Parent WndProc (Handling all parent messages) . is there any way to handle Parent WndProc from my TMyComponent ?
Like this: